view templates/code.djhtml @ 89:64f69c85df71

Add prototype for code page layout WIP
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:47:25 -0400
parents eaa36eaaf74a
children 17bc502c65a4
line wrap: on
line source

{% extends "base.djhtml" %}

{% block content %}

<h1>Browse code submissions</h1>

<a class="pill" href="{% url snippet_new %}">Post a snippet</a>
{% if user.is_authenticated %}
<a class="pill" href="">Upload a single</a>
<a class="pill" href="">Upload a bundle</a>
{% else %}
<a class="pill" href="{% url auth_login %}">Login to upload singles/bundles</a>
{% endif %}

<br />
<br />

<div class="row">
    <div class="span3">
        <h2 class="center-align"><a href="{% url snippet_explore %}">Snippets</a></h2>
        <ul>
            <li>test</li>
            <li>test</li>
            <li>test</li>
            <li>test</li>
        </ul>
    </div><div class="span3">
        <h2 class="center-align">Modules</h2>
        <ul>
            <li>test</li>
            <li>test</li>
            <li>test</li>
            <li>test</li>
        </ul>
    </div><div class="span3">
        <h2 class="center-align">Forge</h2>
        <ul>
            <li>test</li>
            <li>test</li>
            <li>test</li>
            <li>test</li>
        </ul>
    </div>
</div>

{% endblock %}