reworked structure

This commit is contained in:
2020-01-25 20:23:41 +01:00
parent 7292149022
commit 5e70fd84bf
6 changed files with 79 additions and 74 deletions

View File

@@ -1,26 +1,31 @@
<!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="content">
<p class="title">
{{page.title}} <span class="meta">{{ "Written By" | downcase }} {{page.author | downcase}}</span>
</p>
{{content}}
</main>
<body>
<div class="screen-image">
<div class="screen-content crt">
<!-- footer -->
{% include footer.html %}
<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>
</body>
</html>