summaryrefslogtreecommitdiffstats
path: root/templates/public/donate.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-24 18:24:47 +0100
committerDan McGee <dan@archlinux.org>2012-03-24 18:24:47 +0100
commit20198e67ff37565932bc9b036bb678e8243d46c5 (patch)
tree6ba2fa9658fabdba1f74dde25285b23cd3137fef /templates/public/donate.html
parent60c8c00c4f7c2deddcfb1cade8e48d56dca2e9ad (diff)
downloadarchweb-20198e67ff37565932bc9b036bb678e8243d46c5.tar.gz
archweb-20198e67ff37565932bc9b036bb678e8243d46c5.tar.xz
Begin removal of cdnprefix tag
This starts the removal of this code I wrote a while ago in favor of the now core Django static files application and the helpful static template tag. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/donate.html')
-rw-r--r--templates/public/donate.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/public/donate.html b/templates/public/donate.html
index 76fd0aa..3b3ee10 100644
--- a/templates/public/donate.html
+++ b/templates/public/donate.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% load cache %}
-{% load cdn %}
+{% load static from staticfiles %}
{% block title %}Arch Linux - Donate{% endblock %}
@@ -31,7 +31,7 @@
as <a href="http://www.spi-inc.org/donations/">how donations work</a>.</p>
<a href="https://co.clickandpledge.com/Default.aspx?WID=47294">
- <img width="210" height="34" src="{% cdnprefix %}/media/CP_EN_BK_S_001.gif" alt="Donate via Click&amp;Pledge to Arch Linux" title="Donate via Click&amp;Pledge to Arch Linux"/>
+ <img width="210" height="34" src="{% static "CP_EN_BK_S_001.gif" %}" alt="Donate via Click&amp;Pledge to Arch Linux" title="Donate via Click&amp;Pledge to Arch Linux"/>
</a>
<h3>Commercial sponsors and contributions</h3>
@@ -41,7 +41,7 @@
in a server rack, bandwidth, and electricity for our main server.</p>
<a href="http://www.velocitynetwork.net/?hosting_by=ArchLinux"
- title="velocity network"><img width="252" height="58" src="{% cdnprefix %}/media/vnet_button.png" class="sponsor-btn-vnet"
+ title="velocity network"><img width="252" height="58" src="{% static "vnet_button.png" %}" class="sponsor-btn-vnet"
title="" alt="velocity network - it's about time" /></a>
<p>We also wish to extend a special Thank You to <a
@@ -52,7 +52,7 @@
head over to their website for more details.</p>
<a href="https://www.sevenl.net/?utm_source=archlinux-org&amp;utm_medium=sponsored-banner&amp;utm_campaign=thanks-to-sevenl"
- title="SevenL Networks - Dedicated Arch Linux servers"><img width="252" height="58" src="{% cdnprefix %}/media/sevenl_button.png"
+ title="SevenL Networks - Dedicated Arch Linux servers"><img width="252" height="58" src="{% static "sevenl_button.png" %}"
class="sponsor-btn-sevenl" title="A big Thank You to SevenL Networks for their generous contribution"
alt="We would like to express our thanks to SevenL Networks for their generous contribution" /></a>
@@ -60,15 +60,15 @@
title="AirVM.com">AirVM.com</a> for contributing a VMWare-based Virtual Machine.</p>
<a href="http://www.airvm.com/ArchLinux"
- title="AirVM.com - Your Green Technology Partner"><img width="252" height="58" src="{% cdnprefix %}/media/airvm_button.png"
+ title="AirVM.com - Your Green Technology Partner"><img width="252" height="58" src="{% static "airvm_button.png" %}"
class="sponsor-btn-airvm" title="AirVM.com - Your Green Technology Partner" alt="AirVM.com - Your Green Technology Partner" /></a>
<h3>Past donors</h3>
<div id="donor-list">
<ul>
- {% for donor in donors %}
- <li>{{ donor.name }}</li>{% endfor %}
+{% for donor in donors %}
+<li>{{ donor.name }}</li>{% endfor %}
</ul>
</div>
<div class="clear"></div>