src/egonomy/templates/egonomy_base.html
author cavaliet
Thu, 31 Jan 2013 18:01:44 +0100
changeset 20 8dd5b0f370fc
parent 15 64284803db94
child 23 bb7819c8d7c2
permissions -rw-r--r--
search first step
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     1
{% load static %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     2
{% load i18n %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     3
{#% load analytics %#}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     4
<!DOCTYPE html>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     5
<html lang="fr">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     6
    {% block head %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     7
    <head>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     8
        <meta charset="utf-8" />
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
     9
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    10
        <title>TagItAll by eGonomy &raquo; {% block title %}Base{% endblock %}</title>
15
64284803db94 view and create fragment views added
cavaliet
parents: 9
diff changeset
    11
        {% block css_declaration %}{% endblock %}
9
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    12
	    {% block css_import %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    13
        <link rel="stylesheet" href="{% static 'egonomy/css/egonomy.css' %}" />
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    14
	    {% endblock %}
15
64284803db94 view and create fragment views added
cavaliet
parents: 9
diff changeset
    15
	    {% block css_page %}{% endblock %}
64284803db94 view and create fragment views added
cavaliet
parents: 9
diff changeset
    16
        {% block js_import %}{% endblock %}
9
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    17
    </head>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    18
    {% endblock %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    19
    <body>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    20
        <div class="header-wrap fullwidth">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    21
            <header>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    22
                <h1 class="column column-third"><a href="{% url 'home' %}">TagItAll {% trans "by" %} eGonomy</a></h1>
20
8dd5b0f370fc search first step
cavaliet
parents: 15
diff changeset
    23
                <form class="column column-third" action="{% url 'home' %}" method="GET">
8dd5b0f370fc search first step
cavaliet
parents: 15
diff changeset
    24
                    <input class="search-field" type="search" placeholder="{% trans 'Search' %}" id="id_search" name="search"/>
8dd5b0f370fc search first step
cavaliet
parents: 15
diff changeset
    25
                    <input type="hidden" value="all" name="field">
9
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    26
                </form>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    27
                <nav class="column column-third">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    28
                    <a href="#">{% trans "Login" %}</a>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    29
                </nav>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    30
            </header>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    31
        </div>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    32
        <div class="main-wrap fullwidth">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    33
            <div class="main">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    34
                {% block content %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    35
                {% endblock %}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    36
                <footer class="fullwidth">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    37
                    <ul class="footer-list">
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    38
                        <li>&copy; IRI 2013</li>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    39
                    </ul>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    40
                </footer>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    41
            </div>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    42
        </div>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    43
    {#% analytics %#}
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    44
    </body>
aee87529a698 first views with empty templates
cavaliet
parents:
diff changeset
    45
</html>