Skip to content
Extraits de code Groupes Projets
base.html 921 octets
Newer Older
luxcem's avatar
luxcem a validé
<!DOCTYPE html>
luxcem's avatar
luxcem a validé
<html class="no-js" lang="en"> <!--<![endif]-->
luxcem's avatar
luxcem a validé
  <head>
    <meta charset="utf-8" />
    <link rel="icon" type="image/png" href="{{ STATIC_URL }}img/favicon.ico" />
    <!-- Set the viewport width to device width for mobile -->
    <meta name="viewport" content="width=device-width" />
    {% block head %}{% endblock %}
    <title>{% block title %}Home{% endblock %} - The Political Memory of {{ organization_name }}</title>
    <link rel="stylesheet" href="{{ STATIC_URL }}css/reset.css" type="text/css" />
    <link rel="stylesheet" href="{{ STATIC_URL }}css/base.css" type="text/css" />
luxcem's avatar
luxcem a validé
</head>
<body {% block bodyattrs %}{% endblock %}>
    {% include "core/blocks/header.html" %}
    <div class="row main">
luxcem's avatar
luxcem a validé
        <div class="large-12 main columns">
luxcem's avatar
luxcem a validé
            {% block content %}
            {% endblock %}
        </div>
    </div>
    {% include "core/blocks/footer.html" %}
  </body>
</html>