annotate gpp/templates/downloads/navigation.html @ 285:8fd4984d5c3b
This is a first rough commit for #95, adding the ability to embed YouTube videos in forum posts. Some more polish and testing needs to happen at this point. I wanted to get all these changes off my hard drive and into the repository.
author |
Brian Neal <bgneal@gmail.com> |
date |
Thu, 14 Oct 2010 02:39:35 +0000 |
parents |
27bee3ac85e6 |
children |
daa2916f5b34 |
rev |
line source |
bgneal@26
|
1 <div class="app-logo">
|
bgneal@26
|
2 <img src="{{ MEDIA_URL }}icons/downloads-logo.jpg" alt="Downloads Logo" title="Downloads" />
|
bgneal@26
|
3 </div>
|
gremmie@1
|
4 <ul class="app-menu">
|
gremmie@1
|
5 <li><a href="{% url downloads-index %}">Categories</a></li>
|
gremmie@1
|
6 <li><a href="{% url downloads-new %}">New</a></li>
|
gremmie@1
|
7 <li><a href="{% url downloads-popular %}">Popular</a></li>
|
gremmie@1
|
8 <li><a href="{% url downloads-rating %}">Highest Rated</a></li>
|
gremmie@1
|
9 <li><a href="{% url downloads-add %}">Add</a></li>
|
gremmie@1
|
10 </ul>
|
bgneal@208
|
11 <center>
|
bgneal@208
|
12 <form action="{% url downloads-random %}" method="post">{% csrf_token %}
|
bgneal@208
|
13 <input type="submit" title="Download a file at random" value="Surprise Me!" />
|
bgneal@208
|
14 </form>
|
bgneal@208
|
15 </center>
|