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

<head>
  <meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
  <title>{% block title %}Jack Jamison{% endblock title %}</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>
      {% block content %} {% endblock content %}
    </div>
  </section>
</body>

</html>