aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/base.html
blob: 9aa47d8c3b31c3456ba28aac1153f2fb38c7c8d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>Jack Jamison</title>
  <link rel="stylesheet" href="/base.css">
</head>

<body>
  <section class="section">
    <div class="container">
	  {% block header %}
	  <h1 class="header-title"><a href="{{ config.base_url }}">Jack Jamison</a></h1>
	  {% endblock header %}
	  <hr>
	  <br>
      {% block content %} {% endblock content %}
    </div>
  </section>
</body>

</html>