Files
whenwe2/src/_includes/default.njk

27 lines
746 B
Plaintext

<!doctype html>
<html lang="{{ page.lang }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if title %}{{ title }} &mdash; {% endif %}{{ site.title }}</title>
<link href="{{ '/assets/css/style.css' | url }}" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="sidebar">
{#% include "sidebar.html" %#}
</div>
<div class="content">
<h1>{{ title }}</h1>
<ul class="images">
{% for image in images %}
<li><img src="{{ [ '../../images/', image ] | join | url }}"></li>
{% endfor %}
</ul>
{{ content | safe }}
</div>
</div>
</body>
</html>