portal/_layouts/_page.html

25 lines
427 B
HTML
Raw Normal View History

2019-11-25 12:01:33 +01:00
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
2020-01-25 01:48:39 +01:00
<body class="crt">
2019-11-25 12:01:33 +01:00
<style>
2020-01-25 01:48:39 +01:00
.meta {
font-size: .7rem;
font-weight: normal;
2019-11-25 12:01:33 +01:00
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
2020-01-25 01:48:39 +01:00
<main class="post-list">
<p class="title">{{page.title}}</p>
2019-11-25 15:28:46 +01:00
{{content}}
2019-11-25 12:01:33 +01:00
</main>
<!-- footer -->
{% include footer.html %}
</body>
</html>