diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 21:47:49 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 21:47:49 -0400 |
commit | ce1f17e5104d44fa833090c47dd76466a2d7f743 (patch) | |
tree | b304b5bacde314f817aa11b1fa9358296fec6530 /templates | |
parent | 993d1a584f7aff8d0975495bef81850c756eec10 (diff) |
Redirect several URLs at the router level.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/public/art.html | 57 | ||||
-rw-r--r-- | templates/public/donate.html | 28 |
2 files changed, 0 insertions, 85 deletions
diff --git a/templates/public/art.html b/templates/public/art.html deleted file mode 100644 index 32acc172..00000000 --- a/templates/public/art.html +++ /dev/null @@ -1,57 +0,0 @@ -{% extends "base.html" %} -{% load static from staticfiles %} - -{% block title %}{{ BRANDING_DISTRONAME }} - Artwork{% endblock %} - -{% block content %} -<div id="artwork" class="box"> - - <h2>{{ BRANDING_DISTRONAME }} Logos and Artwork</h2> - - <p>You can help by creating artwork for {{ BRANDING_DISTRONAME }}.</p> - - <p>Send your designs to dev@lists.parabola.nu and state they are CC-by-sa - or another free culture friendly license.</p> - -{% comment %} - <h3>Logos for Press Usage</h3> - - <p>The following {{BRANDING_DISTRONAME}} logos are available for press and other use.</p> - - <p><strong>Two-color standard version</strong><br /> - -<!-- This is an example of how images should be added here --> - <em>Also available in print-quality - <a href="{% static "logos/parabola-logo-dark-1200dpi.png" %}" - title="Download 1200dpi PNG format">PNG</a> and scalable - <a href="{% static "logos/parabola-logo-dark-scalable.svg" %}" - title="Download scalable SVG format">SVG</a> formats.</em></p> - - <img src="{% static "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 /> - - - <p><strong>One-color standard version</strong><br /> - - - <p><strong>One-colour inverted version</strong> (for dark backgrounds)<br /> - - <h3>Logos and Artwork for the Community</h3> - - <p>Official logos and artwork are also available directly from the - repositories. These packages would be:</p> - - <ul> - <li><strong>parabola-artwork</strong> - official logos, icons and CD labels</li> - <li><strong>parabola-wallpaper</strong> - a variety of desktop wallpapers - for standard and widescreen resolutions</li> - <li><strong>parabola-themes-kde</strong> - KDE themes and icons</li> - <li><strong>parabola-themes-kdm</strong> - KDM login themes</li> - <li><strong>parabola-themes-slim</strong> - SLiM login themes</li> - </ul> -{% endcomment %} - -</div><!-- #artwork --> -{% endblock %} diff --git a/templates/public/donate.html b/templates/public/donate.html deleted file mode 100644 index f7087dc9..00000000 --- a/templates/public/donate.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "base.html" %} -{% load cache %} -{% load static from staticfiles %} -{% load wiki %} - -{% block title %}{{ BRANDING_DISTRONAME }} - Donate{% endblock %} - -{% block content %} -{% cache 600 donations secure %} -<div id="donations" class="box"> - - <h2>Donate to {{ BRANDING_SHORTNAME }}</h2> - - <h3>We don't accept any money donations</h3> - - <p>That's right. At the moment, Parabola isn't accepting any money - donations. And that's because we have nothing to do with them. We really - don't, at the moment. So, some voluntary work is much preferred than - anything, because we are a really small community of hackers.</p> - - <p>If you want, we have a pretty nice <a - href="{% wiki_url 'TODO' %}" title="The TODO - list!">TODO list</a> you can check to help us by donating some of your - time. That will be very much appreciated by us :)</p> - -</div> -{% endcache %} -{% endblock %} |