summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 384f103779491db1527d7b6b8e0ad80221f324ae (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
{% import "macros.html" as macros %}

<!DOCTYPE html>
<html lang="en">

  {{ macros::head() }}

  <body>

      {{ macros::header() }}

      <section id="about">
        {{ macros::about() }}
      </section>

      <section id="projects">
        {{ macros::projects() }}
      </section>

      {% block content %}
      <p></p>
      {% endblock content %}


      {{ macros::footer() }}
      {{ macros::google_analytics() }}

  </body>