Skip to content
Extraits de code Groupes Projets
base.html 913 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" />
  </head>
  <body {% block bodyattrs %}{% endblock %}>
luxcem's avatar
luxcem a validé
    {% include "core/blocks/header.html" %}
    <div class="row main">
      <div class="large-12 main columns">
        {% block content %}
        {% endblock %}
      </div>
luxcem's avatar
luxcem a validé
    </div>
    {% include "core/blocks/footer.html" %}
  </body>
</html>