import posts, fix styles
This commit is contained in:
parent
12584cf706
commit
9e00d9c09e
32 changed files with 2665 additions and 293 deletions
|
@ -5,17 +5,19 @@ layout: main
|
|||
{% include "header.liquid" %}
|
||||
|
||||
<h2 class="text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{title}}</h2>
|
||||
<div class="mt-2 text-sm mb-4">
|
||||
<em>{{ date | date: "%m.%d.%Y" }}</em> • {% for tag in tags %}
|
||||
{% if tag != "posts" %}
|
||||
<a href="/tags/{{ tag }}" class="no-underline">
|
||||
<span class="post-tag">{{ tag }}</span>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<div class="h-14 flex items-center text-sm">
|
||||
<span>{{ date | date: "%m.%d.%Y" }}</span>
|
||||
<span class="mx-1">•</span>
|
||||
<span class="inline-flex flex-row">
|
||||
{% for tag in tags %} {% if tag != "posts" %}
|
||||
<a href="/tags/{{ tag }}" class="font-normal no-underline">
|
||||
<span class="post-tag">{{ tag }}</span>
|
||||
</a>
|
||||
{% endif %} {% endfor %}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full">
|
||||
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
|
|
Reference in a new issue