first adaption to suit my needs
This commit is contained in:
@@ -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>
|
@@ -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>
|
@@ -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>
|
||||
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user