portal/_layouts/post.html

33 lines
674 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 20:23:41 +01:00
<body>
2020-01-25 21:58:06 +01:00
<div class="screen">
<!-- effects -->
{% include screen-effects.html %}
2021-04-09 22:40:11 +02:00
<div class="screen-content">
2020-01-25 20:23:41 +01:00
<style>
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}} <span class="meta">{{ "Written By" | downcase }} {{page.author | downcase}}</span>
</p>
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</div>
</div>
2019-11-25 12:01:33 +01:00
</body>
</html>