ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/website/extra-server.git/commit/?id=a750e714eb9a2588c53ef60bee2d124a260ce4ea
commit a750e714eb9a2588c53ef60bee2d124a260ce4ea Author: Andy Williams <[email protected]> Date: Sun Jan 29 21:29:46 2017 +0000 Oops, fix the home page with our new style --- public_html/extra/templates/welcome.html | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/public_html/extra/templates/welcome.html b/public_html/extra/templates/welcome.html index 459c76e..88147a3 100644 --- a/public_html/extra/templates/welcome.html +++ b/public_html/extra/templates/welcome.html @@ -25,24 +25,18 @@ web browser!</p> <h4 style="margin-top: 0; padding-top: 10pt !important"><a href="/themes/">Themes</a></h4> <ul class="theme-list"> <li class="theme-item"> - <img src="/themes/preview/{{ theme_id }}.png" alt="preview" /> - <ul class="theme-meta"> - <li><a href="/themes/{{ theme_id }}">{{ themes[theme_id].name }}</a></li> - <li>Author: {{ themes[theme_id].author }}</li> - <li>Version: {{ themes[theme_id].version }}</li> - </ul> + <a href="/themes/{{ theme_id }}" title="{{ themes[theme_id].name }}"> + <img src="/themes/preview/{{ theme_id }}.png" alt="preview" /> + </a> </li> </ul> <h4 style="clear: both; margin-top: 0; padding-top: 10pt !important"><a href="/backgrounds/">Backgrounds</a></h4> <ul class="theme-list"> <li class="theme-item"> - <img src="/backgrounds/preview/{{ background_id }}.png" alt="preview" /> - <ul class="theme-meta"> - <li><a href="/backgrounds/{{ background_id }}">{{ backgrounds[background_id].name }}</a></li> - <li>Author: {{ backgrounds[background_id].author }}</li> - <li>Version: {{ backgrounds[background_id].version }}</li> - </ul> + <a href="/backgrounds/{{ background_id }}" title="{{ backgrounds[background_id].name }}"> + <img src="/backgrounds/preview/{{ background_id }}.png" alt="preview" /> + </a> </li> </ul> --
