view gpp/templates/home.html @ 20:c0d0779b266f

Created a template tag for the latest weblinks: latest_weblinks. This necessitated adding a get_absolute_url function for the Link model along with a new view for it.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 20:41:37 +0000
parents aa2b41c5212b
children a5f27f25fa52
line wrap: on
line source
{% extends 'base.html' %}
{% load weblinks_tags %}
{% block title %}Home{% endblock %}
{% block content %}
<h2>Welcome to SurfGuitar101!</h2>
<p>You are looking at a test version of the new SurfGuitar101 website, dubbed <strong>SG101 2.0</strong>. 
All major functionality is here except for the forums (which are still in development). 
The purpose of this test site is to test the new site software, to get feedback from the user base, and 
to develop a better theme (colors, logos, layout, etc.) for the site. All bugs and feature requests are being tracked at 
<a href="http://code.surfguitar101.com">code.surfguitar101.com</a>. Existing SG101 members are encouraged
to sign up here and give the new site a test drive. Any and all feedback is appreciated! Thank you for
helping to make this site be the best home on the web for fans and friends of surf music!
</p>
<p>Remember that this is a test site, and not everything is going to work. Nothing here is
permanent. The site (content, user accounts, etc.) may be wiped at any time while we fix bugs and add features. 
Also, I hope that the look and feel of this site can be greatly improved to something really cool! I'll need
lots of help for this aspect, as I'm more of a coder than a designer.</p>
<div class="span-9">
   {% latest_weblinks %} 
</div>
<div class="span-10 last">
   Some more stuff.
</div>
{% endblock %}