From 561a5a1f49263e8ba90f565cbcde47129f9c6ffa Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 3 Apr 2017 19:39:16 +0200 Subject: [PATCH] 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'] %}
  • Description: {{ background['description'] }}
  • {% endif %} + {% if background['source'] %} +
  • Source: {{ background['source'] }}
  • + {% endif %}

    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'] %}
  • Description: {{ theme['description'] }}
  • {% endif %} + {% if theme['source'] %} +
  • Source: {{ theme['source'] }}
  • + {% endif %}