diff options
Diffstat (limited to 'templates/public')
-rw-r--r-- | templates/public/art.html | 6 | ||||
-rw-r--r-- | templates/public/index.html | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/templates/public/art.html b/templates/public/art.html index 3a92b8b4..08acf764 100644 --- a/templates/public/art.html +++ b/templates/public/art.html @@ -25,12 +25,12 @@ {% comment %} <!-- This is an example of how images should be added here --> <em>Also available in print-quality - <a href="{% cdnprefix %}/media/logos/parabola-logo-dark-1200dpi.png" + <a href="{{ STATIC_URL }}logos/parabola-logo-dark-1200dpi.png" title="Download 1200dpi PNG format">PNG</a> and scalable - <a href="{% cdnprefix %}/media/logos/parabola-logo-dark-scalable.svg" + <a href="{{ STATIC_URL }}logos/parabola-logo-dark-scalable.svg" title="Download scalable SVG format">SVG</a> formats.</em></p> - <img src="{% cdnprefix %}/media/logos/parabola-logo-dark-90dpi.png" + <img src="{{ STATIC_URL }}logos/parabola-logo-dark-90dpi.png" alt="Parabola PNG logo @ 90dpi" title="Parabola PNG logo @ 90dpi" /> <p><strong>Two-color inverted version</strong> (for dark backgrounds)<br /> diff --git a/templates/public/index.html b/templates/public/index.html index 0ecea0e2..2cfec9e2 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -39,7 +39,7 @@ </h3> <a href="/feeds/news/" title="Parabola News RSS Feed" - class="rss-icon"><img src="{% cdnprefix %}/media/rss.png" alt="RSS Feed" /></a> + class="rss-icon"><img src="{{ STATIC_URL }}rss.png" alt="RSS Feed" /></a> {% for news in news_updates %} {% if forloop.counter0 < 5 %} @@ -92,7 +92,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 src="{% cdnprefix %}/media/rss.png" alt="RSS Feed" /></a> + class="rss-icon"><img src="{{ STATIC_URL }}rss.png" alt="RSS Feed" /></a> <table> {% for update in pkg_updates %} @@ -186,23 +186,23 @@ <div id="arch-sponsors" class="widget"> <a href="http://gnuchile.org"> - <img src="{% cdnprefix %}/media/gnuchile.png" + <img src="{{ STATIC_URL }}gnuchile.png" alt="GNU Chile - Donates the .org domain" title="GNU Chile - Donates the .org domain" /> </a> <a href="http://venenux.org"> - <img src="{% cdnprefix %}/media/venenux.png" + <img src="{{ STATIC_URL }}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> - <img src="{% cdnprefix %}/media/naltu.png" + <img src="{{ STATIC_URL }}naltu.png" alt="NaltĂș - Donates the website, bugs, projects and ABSLibre hosting" title="NaltĂș - Donates the website, bugs, projects and ABSLibre hosting" /> <a href="http://freedomincluded.com"> - <img src="{% cdnprefix %}/media/freedomincluded.png" + <img src="{{ STATIC_URL }}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> |