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,34 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<style>
.title {
padding: 5%;
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 -->
{% 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 %}
</body>
</html>

View File

@@ -1,31 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<style>
.title {
padding: 10% 5%;
color: #101417;
font-size: 18px;
font-weight: bold;
text-align: center;
background: #f78e66;
display: grid;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}}
</p>
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</body>
</html>

View File

@@ -1,16 +1,11 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<body class="crt">
<style>
.title {
padding: 5%;
color: #101417;
font-size: 18px;
font-weight: bold;
text-align: center;
background: #f78e66;
display: grid;
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
@@ -18,10 +13,8 @@
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}}
</p>
<main class="post-list">
<p class="title">{{page.title}}</p>
{{content}}
</main>

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>