bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/website/extra-server.git/commit/?id=561a5a1f49263e8ba90f565cbcde47129f9c6ffa
commit 561a5a1f49263e8ba90f565cbcde47129f9c6ffa Author: Marcel Hollerbach <[email protected]> Date: Mon Apr 3 19:39:16 2017 +0200 extra: add sources to the backgrounds and themes --- public_html/extra/data.py | 3 +++ public_html/extra/templates/background.html | 3 +++ public_html/extra/templates/theme.html | 3 +++ 3 files changed, 9 insertions(+) diff --git a/public_html/extra/data.py b/public_html/extra/data.py index c6c499a..62321f5 100644 --- a/public_html/extra/data.py +++ b/public_html/extra/data.py @@ -4,6 +4,7 @@ THEMES = { 'name': 'Arc Dark', 'author': 'LeBlue', 'description': 'Arc (dark) theme for enlightenment.', + 'source' : 'https://github.com/LeBlue/enlightenment-arc-theme.git', 'version': 3 }, 'arc-light': { @@ -18,6 +19,7 @@ THEMES = { 'name': 'Bling', 'author': 'netstar', 'description': 'The theme used while e17 was in development.', + 'source' : 'https://git.enlightenment.org/themes/blingbling.git/', 'version': 2 }, 'eflemettary': { @@ -25,6 +27,7 @@ THEMES = { 'name': 'Eflemettary', 'author': 'NikaWhite, rimmed, FurryMad and LordDrew', 'description': 'A theme written and designed with eflete', + 'source' : 'https://git.enlightenment.org/devs/nikawhite/eflemettary.git/', 'version': 1, } } diff --git a/public_html/extra/templates/background.html b/public_html/extra/templates/background.html index d907cb1..1bc4911 100644 --- a/public_html/extra/templates/background.html +++ b/public_html/extra/templates/background.html @@ -11,6 +11,9 @@ {% if background['description'] %} <li>Description: {{ background['description'] }}</li> {% endif %} + {% if background['source'] %} + <li>Source: <a href="{{ background['source'] }}">{{ background['source'] }}</a></li> + {% endif %} </ul> <br /><br /> diff --git a/public_html/extra/templates/theme.html b/public_html/extra/templates/theme.html index ac8b5a6..9b4bcc7 100644 --- a/public_html/extra/templates/theme.html +++ b/public_html/extra/templates/theme.html @@ -11,6 +11,9 @@ {% if theme['description'] %} <li>Description: {{ theme['description'] }}</li> {% endif %} + {% if theme['source'] %} + <li>Source: <a href="{{ theme['source'] }}">{{ theme['source'] }}</a></li> + {% endif %} </ul> <br /><br /> --
