summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 4e791485ab169d9df4126c01d3be13289db645d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>{% block title %}{{ config.title }}{% endblock %}</title>
  <link rel="stylesheet" href="{{ get_url(path='style.css') }}">
</head>
<body>
  <nav>
    <a href="{{ get_url(path='@/_index.md') }}">home</a>
    <a href="{{ get_url(path='@/blog/_index.md') }}">blog</a>
  </nav>
  <main>{% block content %}{% endblock %}</main>
</body>
</html>