Changeset - 50e753ec7d0f
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-07-19 07:09:33
lukeman@gmail.com
add an id to the masthead
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion_project/templates/site_base.html
Show inline comments
 
{% extends "symposion_sidebar_base.html" %}
 

	
 
{% load metron_tags %}
 
{% load i18n %}
 
{% load sitetree %}
 
{% load markitup_tags %}
 
{% load static %}
 

	
 
{% block viewport %}{% endblock %}
 

	
 
{% block style_base %}
 
    <link href="{% static "symposion/css/symposion.css" %}" rel="stylesheet">
 
    {% block extra_style %}{% endblock %}
 
{% endblock %}
 

	
 
{% block extra_head_base %}
 
    <link href="{{ STATIC_URL }}img/favicon.ico" rel="shortcut icon" />
 
    <script src="{% block jquery_src %}{% static "pinax/js/jquery.js" %}{% endblock %}"></script>
 
    {% markitup_media "no-jquery" %}
 
    {% block extra_head %}{% endblock %}
 
{% endblock %}
 

	
 
{% block topbar_base %}
 
    <div class="container">
 
        <header>
 
        <header id="masthead">
 
            <div class="pull-right">
 
                {% if request.user.is_authenticated %}
 
                    <form style="margin: 0;" action="{% url account_logout %}" method="post">
 
                        <div class="btn-group">
 
                            <a class="btn" href="{% url dashboard %}">Dashboard</a>
 
                            {% if request.user.is_staff %}
 
                                <a class="btn" href="{% url admin:index %}">Admin</a>
 
                            {% endif %}
 
                            <a class="btn" href="{% url account_settings %}">Settings</a>
 
                            {% csrf_token %}<button type="submit" class="btn">Log out</button>
 
                        </div>
 
                    </form>
 
                {% else %}
 
                    <a href="{% url account_login %}">Log in</a> / <a href="{% url account_signup %}">Sign up</a>
 
                {% endif %}
 
            </div>
 
            
 
            <h1><a href="{% url home %}">{{ SITE_NAME }}</a></h1>
 
            <h2><a href="{% url home %}"><span style="font-weight: 200;">Some amazing location, February 31st</span></a></h2>
 
        </header>
 
        <div class="navbar">
 
            <div class="navbar-inner">
 
                {% block topbar %}
 
                    <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
0 comments (0 inline, 0 general)