e-org-extra-server/public_html/extra/templates/welcome.html

53 lines
2.1 KiB
HTML

{% extends "layout.html" %}
{% block title %}Welcome{% endblock %}
{% block heading %}Welcome{% endblock %}
{% block content %}
<p>Welcome to Enlightenment Extra - the place to get quality, maintained
themes and add-ons for the Enlightenment window manager.</p>
<p>Over the years Enlightenment has been a very popular system for those
looking for a beautiful, unique desktop environment. Keeping up with
these expectations has been a significant challenge and there have been
many different versions of theme formats etc.</p>
<p>Enter "Extra" - since Enlightenment 0.21 the theme format is being
carefully maintained to make it easier for themers to maintain their assets.
So here you will find modern, high quality and well maintained themes only.</p>
<p>Have a look around and download things you like. Why not also try the <code>extra</code> app that will help browse and install themes without needing a
web browser!</p>
<h3>Popular Content</h3>
{% set theme_id = 'arc-dark' %}
{% set background_id = 'cracked-earth' %}
<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>
</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>
</li>
</ul>
<br style="clear: both" /><br />
<p><a href="/about/">About</a> Enlightenment Extra.</p>
{% endblock %}