Changed how the blog post links are generated; modified the blog post template to show the post's title and date
This commit is contained in:
parent
52192aedef
commit
b0e438adcd
@ -6,7 +6,6 @@ description: >-
|
||||
The Bit Goblin main website, a place for cool tech things.
|
||||
baseurl: '/'
|
||||
url: 'https://www.bitgoblin.tech'
|
||||
permalink: '/:year/:month/:day/:title:output_ext'
|
||||
links:
|
||||
bitgoblin_channel: 'https://youtube.com/BitGoblin'
|
||||
ascendings_channel: 'https://www.youtube.com/channel/UCCWlMg8oP9pz4Zlu4iZjPFw'
|
||||
|
@ -2,4 +2,7 @@
|
||||
layout: default
|
||||
---
|
||||
|
||||
<h1>{{ page.title }}</h1>
|
||||
<p class="post-info">{{ page.date | date: "%a %b %d, %Y" }}</p>
|
||||
|
||||
{{ content }}
|
||||
|
@ -1,8 +1,9 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Welcome to Bit Goblin!"
|
||||
description: "There's not much else to say... welcome to Bit Goblin!"
|
||||
date: 2021-08-17 13:11:02 -0400
|
||||
categories: housekeeping
|
||||
tags: housekeeping
|
||||
---
|
||||
|
||||
There's not much else to say... welcome to Bit Goblin!
|
||||
|
@ -24,6 +24,10 @@ hr
|
||||
.u-text-center
|
||||
text-align: center
|
||||
|
||||
.post-info
|
||||
color: #999
|
||||
font-style: italic
|
||||
|
||||
// this wrapper is only used to hide the footer
|
||||
#wrapper
|
||||
position: relative
|
||||
@ -138,9 +142,6 @@ hr
|
||||
.post-title
|
||||
margin-bottom: 3px
|
||||
|
||||
.post-info
|
||||
color: #999
|
||||
|
||||
.post-body
|
||||
margin-bottom: 0
|
||||
|
||||
|
@ -7,7 +7,7 @@ layout: page
|
||||
<li>
|
||||
<h5 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h5>
|
||||
<p class="post-info">{{ post.date | date: "%a %b %d, %Y" }}</p>
|
||||
{{ post.content | truncate: 350 }}
|
||||
<p>{{ post.description }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user