annotate gpp/templates/home.html @ 166:8acf5be27f18

Implement #50, add a template tag to display the latest poll and add to the home page.
author Brian Neal <bgneal@gmail.com>
date Sun, 17 Jan 2010 20:24:01 +0000
parents 416353def4ca
children b1766b1bda45
rev   line source
bgneal@19 1 {% extends 'base.html' %}
bgneal@28 2 {% load bulletin_tags %}
bgneal@32 3 {% load news_tags %}
bgneal@20 4 {% load weblinks_tags %}
bgneal@23 5 {% load downloads_tags %}
bgneal@166 6 {% load poll_tags %}
bgneal@159 7 {% load forum_tags %}
bgneal@43 8 {% load cache %}
bgneal@19 9 {% block title %}Home{% endblock %}
bgneal@32 10 {% block custom_css %}
bgneal@32 11 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/news.css" />
bgneal@32 12 {% endblock %}
bgneal@33 13 {% block custom_js %}
bgneal@33 14 <script type="text/javascript" src="{{ MEDIA_URL }}js/slideshow.js"></script>
bgneal@33 15 {% endblock %}
bgneal@19 16 {% block content %}
bgneal@19 17 <h2>Welcome to SurfGuitar101!</h2>
bgneal@33 18 <div class="span-9">
bgneal@33 19 <div id="slideshow">
bgneal@33 20 <img src="{{ MEDIA_URL }}slideshow/image-1.jpg" alt="Slideshow Image 1" class="active" />
bgneal@33 21 <img src="{{ MEDIA_URL }}slideshow/image-2.jpg" alt="Slideshow Image 2" />
bgneal@33 22 <img src="{{ MEDIA_URL }}slideshow/image-3.jpg" alt="Slideshow Image 3" />
bgneal@33 23 <img src="{{ MEDIA_URL }}slideshow/image-4.jpg" alt="Slideshow Image 4" />
bgneal@33 24 <img src="{{ MEDIA_URL }}slideshow/image-5.jpg" alt="Slideshow Image 5" />
bgneal@33 25 </div>
bgneal@33 26 </div>
bgneal@33 27 <div class="span-10 last">
bgneal@19 28 <p>You are looking at a test version of the new SurfGuitar101 website, dubbed <strong>SG101 2.0</strong>.
bgneal@19 29 All major functionality is here except for the forums (which are still in development).
bgneal@19 30 The purpose of this test site is to test the new site software, to get feedback from the user base, and
bgneal@19 31 to develop a better theme (colors, logos, layout, etc.) for the site. All bugs and feature requests are being tracked at
bgneal@19 32 <a href="http://code.surfguitar101.com">code.surfguitar101.com</a>. Existing SG101 members are encouraged
bgneal@19 33 to sign up here and give the new site a test drive. Any and all feedback is appreciated! Thank you for
bgneal@19 34 helping to make this site be the best home on the web for fans and friends of surf music!
bgneal@19 35 </p>
bgneal@33 36 </div>
bgneal@19 37 <p>Remember that this is a test site, and not everything is going to work. Nothing here is
bgneal@19 38 permanent. The site (content, user accounts, etc.) may be wiped at any time while we fix bugs and add features.
bgneal@19 39 Also, I hope that the look and feel of this site can be greatly improved to something really cool! I'll need
bgneal@19 40 lots of help for this aspect, as I'm more of a coder than a designer.</p>
bgneal@54 41 {% cache 3600 home_bulletins %}
bgneal@54 42 {% current_bulletins %}
bgneal@54 43 {% endcache %}
bgneal@159 44 {% new_posts %}
bgneal@54 45 {% cache 3600 home_news %}
bgneal@54 46 {% current_news %}
bgneal@54 47 {% endcache %}
bgneal@54 48 {% cache 3600 home_new_stuff %}
bgneal@166 49 {% latest_poll %}
bgneal@23 50 <div class="span-9 append-1">
bgneal@20 51 {% latest_weblinks %}
bgneal@19 52 </div>
bgneal@23 53 <div class="span-9 last">
bgneal@23 54 {% latest_downloads %}
bgneal@19 55 </div>
bgneal@43 56 {% endcache %}
bgneal@19 57 {% endblock %}