first adaption to suit my needs

This commit is contained in:
Patrick Tschuchnig
2020-01-25 01:48:39 +01:00
parent a22cff5163
commit bf3b8fc115
23 changed files with 265 additions and 238 deletions

View File

@@ -1,21 +1,11 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<body class="crt">
<style>
.title {
padding: 10%;
color: #101417;
font-size: 18px;
font-weight: bold;
text-align: center;
background: #f78e66;
display: grid;
}
.meta {
font-size: .7rem;
font-weight: normal;
text-transform: uppercase;
}
</style>
<!-- header -->
@@ -25,7 +15,7 @@
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}} <span class="meta">Written By {{page.author}}</span>
{{page.title}} <span class="meta">{{ "Written By" | downcase }} {{page.author | downcase}}</span>
</p>
{{content}}
</main>