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

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

  {{ macros::head() }}

  <body>

      {{ macros::header() }}

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

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

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


      {{ macros::footer() }}

  </body>