2018-03-13 17:02:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-03-16 15:24:12 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2018-03-13 17:02:47 +00:00
|
|
|
<title>{{ site.title }}</title>
|
|
|
|
{% feed_meta %}
|
2018-03-13 17:49:20 +00:00
|
|
|
<link rel="stylesheet" href='{{ "/assets/css/page.css" | relative_url }}'>
|
2018-03-13 17:02:47 +00:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" integrity="sha256-e22BQKCF7bb/h/4MFJ1a4lTRR2OuAe8Hxa/3tgU5Taw=" crossorigin="anonymous" />
|
2018-03-18 18:37:59 +00:00
|
|
|
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js" integrity="sha256-uWtSXRErwH9kdJTIr1swfHFJn/d/WQ6s72gELOHXQGM=" crossorigin="anonymous"></script>
|
|
|
|
<script src="{{ '/assets/js/page.js' | relative_url }}"></script>
|
2018-03-13 17:02:47 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include header.html %}
|
2018-03-13 17:15:12 +00:00
|
|
|
<main>
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
2018-03-13 17:02:47 +00:00
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|