h-entry classes on posts

This commit is contained in:
Cory Dransfeldt 2023-03-16 13:32:52 -07:00
parent 4dd6cc9313
commit 985ac0f0bd
No known key found for this signature in database
2 changed files with 34 additions and 24 deletions

View file

@ -3,14 +3,16 @@ layout: main
--- ---
{% include "header.liquid" %} {% include "header.liquid" %}
<article class="h-entry">
<h2 class="text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{title}}</h2> <h2 class="p-name text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{title}}</h2>
<div class="mt-2 mb-6 text-sm"> <span class="p-author h-card hidden">{{ site.title }}</span>
{{ date | date: "%m.%d.%Y" }} <div class="mt-2 mb-6 text-sm">
</div> <time class="dt-published" datetime="{{ date }}">{{ date | date: "%m.%d.%Y" }}</time>
</div>
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white"> <div class="p-summary hidden">{{ post_excerpt | markdown }}</div>
{{ content }} <div class="e-content prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
</div> {{ content }}
</div>
</article>
{% include "webmentions.liquid" %} {% include "webmentions.liquid" %}
{% include "author.liquid" %} {% include "author.liquid" %}

View file

@ -9,21 +9,29 @@ pagination:
--- ---
{% include "now-topper.liquid" %} {% for post in pagination.items %} {% if post.data.published %} {% include "now-topper.liquid" %} {% for post in pagination.items %} {% if post.data.published %}
<div class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"> <article class="h-entry">
<a class="no-underline" href="{{ post.url }}" <div
><h2 class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl" >
> <a class="no-underline" href="{{ post.url }}"
{{ post.data.title }} ><h2
</h2> class="p-name m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl"
</a> >
<div class="my-2 text-sm"> {{ post.data.title }}
{{ post.date | date: "%m.%d.%Y" }} </h2>
</a>
<span class="p-author h-card hidden">{{ site.title }}</span>
<div class="my-2 text-sm">
{
<time class="dt-published" datetime="{{ post.date }}"
>{ post.date | date: "%m.%d.%Y" }}</time
>
</div>
<p class="p-summary mt-0">{{ post.data.post_excerpt | markdown }}</p>
<div class="mt-4 flex items-center justify-between">
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more &rarr;</a>
</div>
</div> </div>
<p class="mt-0">{{ post.data.post_excerpt | markdown }}</p> </article>
<div class="mt-4 flex items-center justify-between">
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more &rarr;</a>
</div>
</div>
{% endif %} {% endfor %} {% include "paginator.liquid" %} {% endif %} {% endfor %} {% include "paginator.liquid" %}