2017-03-14 12:25:45 +00:00
|
|
|
<!DOCTYPE html>
|
2018-01-16 12:49:49 +00:00
|
|
|
<html lang="en">
|
2017-03-14 12:25:45 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="{{ config.description }}">
|
|
|
|
<meta name="author" content="{{ config.extra.author.name }}">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans|Merriweather" rel="stylesheet">
|
2020-06-09 20:38:29 +00:00
|
|
|
<link href="{{ get_url(path="/site.css", cachebust=true) | safe }}" rel="stylesheet">
|
2017-03-14 12:25:45 +00:00
|
|
|
<title>{{ config.title }}</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}
|
|
|
|
<div class="list-posts">
|
2017-05-08 10:29:37 +00:00
|
|
|
{% for page in section.pages %}
|
2017-03-14 12:25:45 +00:00
|
|
|
<article>
|
2017-03-30 08:17:12 +00:00
|
|
|
<h3 class="post__title"><a href="{{ page.permalink }}">{{ page.title }}</a></h3>
|
2017-03-14 12:25:45 +00:00
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|
|
</div>
|
2020-06-09 20:38:29 +00:00
|
|
|
<script src="{{ get_url(path="scripts/hello.js") | safe }}"
|
|
|
|
integrity="sha384-{{ get_file_hash(path="scripts/hello.js") }}"></script>
|
2017-03-14 12:25:45 +00:00
|
|
|
</body>
|
|
|
|
</html>
|