new jekyll site up and running!

This commit is contained in:
Andrew Conlin 2023-03-04 15:33:00 +00:00
parent 907f833a2b
commit 32ce7bd7c5
25 changed files with 856 additions and 97 deletions

16
_layouts/post.html Normal file
View file

@ -0,0 +1,16 @@
---
layout: default
---
{% assign tags = page.tags %}
<p style="font-family:Rubik Mono One;">
{{ page.date | date_to_string }} |
{% for tag in tags %}
{% assign currentTag = site.data.tags[tag] %}
<span style="background-color:{{currentTag.backColor}};color:{{currentTag.textColor}};">{{ tag }}</span>
{% endfor %}
</p>
<hr>
{{ content }}