annotate gpp/templates/home.html @ 28:04377c5bf912

Added bulletins template tag.
author Brian Neal <bgneal@gmail.com>
date Wed, 22 Apr 2009 00:34:42 +0000
parents a5f27f25fa52
children 07da6967fc40
rev   line source
bgneal@19 1 {% extends 'base.html' %}
bgneal@28 2 {% load bulletin_tags %}
bgneal@20 3 {% load weblinks_tags %}
bgneal@23 4 {% load downloads_tags %}
bgneal@19 5 {% block title %}Home{% endblock %}
bgneal@19 6 {% block content %}
bgneal@19 7 <h2>Welcome to SurfGuitar101!</h2>
bgneal@19 8 <p>You are looking at a test version of the new SurfGuitar101 website, dubbed <strong>SG101 2.0</strong>.
bgneal@19 9 All major functionality is here except for the forums (which are still in development).
bgneal@19 10 The purpose of this test site is to test the new site software, to get feedback from the user base, and
bgneal@19 11 to develop a better theme (colors, logos, layout, etc.) for the site. All bugs and feature requests are being tracked at
bgneal@19 12 <a href="http://code.surfguitar101.com">code.surfguitar101.com</a>. Existing SG101 members are encouraged
bgneal@19 13 to sign up here and give the new site a test drive. Any and all feedback is appreciated! Thank you for
bgneal@19 14 helping to make this site be the best home on the web for fans and friends of surf music!
bgneal@19 15 </p>
bgneal@19 16 <p>Remember that this is a test site, and not everything is going to work. Nothing here is
bgneal@19 17 permanent. The site (content, user accounts, etc.) may be wiped at any time while we fix bugs and add features.
bgneal@19 18 Also, I hope that the look and feel of this site can be greatly improved to something really cool! I'll need
bgneal@19 19 lots of help for this aspect, as I'm more of a coder than a designer.</p>
bgneal@28 20 {% current_bulletins %}
bgneal@23 21 <div class="span-9 append-1">
bgneal@20 22 {% latest_weblinks %}
bgneal@19 23 </div>
bgneal@23 24 <div class="span-9 last">
bgneal@23 25 {% latest_downloads %}
bgneal@19 26 </div>
bgneal@19 27 {% endblock %}