diff options
Diffstat (limited to 'templates/public/index.html')
-rw-r--r-- | templates/public/index.html | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/templates/public/index.html b/templates/public/index.html index 73f48012..58d5815d 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -1,6 +1,7 @@ {% extends "base.html" %} -{% load markup cache cdn %} +{% load markup cache %} {% load url from future %} +{% load static from staticfiles %} {% block head %} <link rel="alternate" type="application/rss+xml" title="Parabola News Updates" href="/feeds/news/" /> @@ -37,7 +38,7 @@ </h3> <a href="/feeds/news/" title="Parabola News RSS Feed" - class="rss-icon"><img width="16" height="16" src="{% cdnprefix %}/media/rss.png" alt="RSS Feed" /></a> + class="rss-icon"><img width="16" height="16" src="{% static "rss.png" %}" alt="RSS Feed" /></a> {% for news in news_updates %} {% if forloop.counter0 < 5 %} @@ -90,7 +91,7 @@ title="Browse all of the latest packages">more</a>)</span></h3> <a href="/feeds/packages/" title="Parabola Package Updates RSS Feed" - class="rss-icon"><img width="16" height="16" src="{% cdnprefix %}/media/rss.png" alt="RSS Feed" /></a> + class="rss-icon"><img width="16" height="16" src="{% static "rss.png" %}" alt="RSS Feed" /></a> <table> {% for update in pkg_updates %} @@ -144,7 +145,7 @@ title="Check the status of all known mirrors">Mirror Status</a></li> <li><a href="/packages/differences/" title="See differences in packages between available architectures">Differences Reports</a> - <img width="16" height="16" src="{% cdnprefix %}/media/new.png" alt="New"/></li> + <img width="16" height="16" src="{% static "new.png" %}" alt="New"/></li> </ul> <h4>Development</h4> @@ -166,7 +167,7 @@ title="Releng Testbuild Feedback">Releng Testbuild Feedback</a></li> <li><a href="{% url 'visualize-index' %}" title="View visualizations">Visualizations</a> - <img width="16" height="16" src="{% cdnprefix %}/media/new.png" alt="New"/></li> + <img width="16" height="16" src="{% static "new.png" %}" alt="New"/></li> </ul> <h4>More Resources</h4> @@ -174,7 +175,7 @@ <ul> <li><a href="{% url 'page-keys' %}" title="Package/Database signing master keys">Signing Master Keys</a> - <img width="16" height="16" src="{% cdnprefix %}/media/new.png" alt="New"/></li> + <img width="16" height="16" src="{% static "new.png" %}" alt="New"/></li> <li><a href="https://wiki.parabolagnulinux.org/Media" title="Parabola in the media">Press Coverage</a></li> <li><a href="{% url 'page-art' %}" title="Parabola logos and other artwork for promotional use">Logos & Artwork</a></li> @@ -195,23 +196,23 @@ donate button would go here <div id="arch-sponsors" class="widget"> <a href="http://gnuchile.cl"> - <img src="{{ STATIC_URL }}gnuchile.png" + <img src="{% static "gnuchile.png" %}" alt="GNU Chile - Donates the .org domain" title="GNU Chile - Donates the .org domain" /> </a> - <img src="{{ STATIC_URL }}venenux.png" + <img src="{% static "venenux.png" %}" alt="Venenux GNU/Linux - Donates the repo, wiki and lists hosting" title="Venenux GNU/Linux - Donates the repo, wiki and lists hosting" /> <a href="http://naltu.com"> - <img src="{{ STATIC_URL }}naltu.png" + <img src="{% static "naltu.png" %}" alt="NaltĂș - Donates the website, bugs, projects and ABSLibre hosting" title="NaltĂș - Donates the website, bugs, projects and ABSLibre hosting" /> </a> <a href="http://freedomincluded.com"> - <img src="{{ STATIC_URL }}freedomincluded.png" + <img src="{% static "freedomincluded.png" %}" alt="Freedom Included - Donated Lemote Yeeloongs to port Parabola to the MIPS architecture" title="Freedom Included - Donated Lemote Yeeloongs to port Parabola to the MIPS architecture" /> </a> |