summaryrefslogtreecommitdiff
path: root/src/_includes/layouts/base.njk
blob: ba0fca308d92aff6cf512393350752a6b41ec949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% block header %}
  <!DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
      <title>{{ title }}</title>
      <meta name="description" content="{{ description }}"/>
      <meta name="viewport" content="width=device-width, initial-scale=1"/>
      <link rel="stylesheet" href="/guzzle.css"/>
    </head>
  {% endblock %}
  <body>
    {% block container %}
      <div class="container">
        {% block body %}
          <div class="content">
            {% block content %}
              {{ content | safe }}
            {% endblock %}
          </div>
        {% endblock %}
      {% endblock %}
    </div>
    <br \>
    <footer>
      {% block footer %}
        <a href="https://github.com/getchoo/getchoo.github.io">source</a>
        commit:
      {% endblock %}
    </footer>
  </body>
</html>