Small tweaks to the styling. Uses a global max width on the theme

This commit is contained in:
Zach Leatherman
2022-08-15 14:53:45 -05:00
parent 2d2b6c38f5
commit df6a44bf80
6 changed files with 58 additions and 46 deletions

View File

@ -1,5 +1,5 @@
---
title: This is my second post.
title: This is my second post with a much longer title.
description: This is a post on My Blog about leveraging agile frameworks.
date: 2018-07-04
tags:

View File

@ -4,7 +4,9 @@ layout: layouts/home.njk
---
<h1>Tags</h1>
<ul>
{% for tag in collections.all | getAllTags | filterTagList %}
{% set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
<a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a>
<li><a href="{{ tagUrl | url }}" class="post-tag">{{ tag }}</a></li>
{% endfor %}
</ul>