portal/_layouts/page.html
2020-01-25 01:48:39 +01:00

25 lines
427 B
HTML

<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body class="crt">
<style>
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="post-list">
<p class="title">{{page.title}}</p>
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</body>
</html>