portal/_layouts/page-screen.html

30 lines
563 B
HTML
Raw Normal View History

2020-01-25 13:03:42 +01:00
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div class="screen">
2020-01-25 17:27:13 +01:00
<div class="screen-image"></div>
2020-01-25 13:03:42 +01:00
<div class="screen-content 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 %}
</div>
</div>
</body>
</html>