Change blog formatting

This commit is contained in:
~erin 2022-03-06 11:17:39 -05:00
parent d185d8602f
commit adf729e3b2
No known key found for this signature in database
GPG Key ID: DA70E064A8C70F44
4 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,7 @@
layout: default.liquid
title: First Post
description: Description
categories: []
is_draft: true
---

View File

@ -21,6 +21,11 @@
<span><code class="date">{{post.published_date}}</code></span>
</h3>
<p>{{post.description}}</p>
<p class="tags"><b>Tags: </b><i>
{% for category in post.categories %}
{{category}},
{% endfor %}
</i></p>
{% endfor %}
</div>
</div>

View File

@ -98,6 +98,11 @@ box-shadow: inset 5px 5px 10px #070708,
}
}
code.date {
display: inline;
font-size: 14px;
}
h1 {
font-size: 30px;
@ -124,3 +129,7 @@ h3 {
color: $background-color;
background: $foreground-color;
}
.tags {
font-size: 14px;
}

View File

@ -2,6 +2,7 @@
title: Formatting Test
description: Page to test formatting and CSS
published_date: "2022-03-05 20:51:17 +0000"
categories: ["test", "formatting"]
layout: default.liquid
is_draft: false
---