feat: remove tailwind
This commit is contained in:
parent
447e3b417d
commit
9b2d0883e5
56 changed files with 1541 additions and 3862 deletions
|
@ -24,35 +24,19 @@ meta:
|
|||
|
||||
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
|
||||
<article class="h-entry">
|
||||
<div
|
||||
class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"
|
||||
>
|
||||
<a class="no-underline" href="{% if post.data.link %}{{ post.data.link }}{% else %}{{ post.url }}{% endif %}">
|
||||
{% if post.data.link %}
|
||||
<h2 class="[&>svg]:h-5 [&>svg]:w-5 [&>svg]:md:h-7 [&>svg]:md:w-7 [&>svg]:-mt-1 [&>svg]:md:-mt-1.5 [&>svg]:inline icon--bold p-name m-0 text-xl font-black leading-tight tracking-normal hover:text-blue-800 dark:text-white dark:hover:text-blue-200 md:text-2xl ease-in-out duration-300">
|
||||
{% tablericon 'link' post.data.title %}
|
||||
{{ post.data.title }}
|
||||
</h2>
|
||||
{% else %}
|
||||
<h2
|
||||
class="p-name m-0 text-xl font-black leading-tight tracking-normal hover:text-blue-800 dark:text-white dark:hover:text-blue-200 md:text-2xl ease-in-out duration-300"
|
||||
>
|
||||
{{ post.data.title }}
|
||||
</h2>
|
||||
{% endif %}
|
||||
<a class="no-underline" href="{{ post.url }}">
|
||||
<h2>
|
||||
{{ post.data.title }}
|
||||
</h2>
|
||||
</a>
|
||||
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
|
||||
<div class="my-2 text-sm">
|
||||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%m.%Y" }} {% if post.data.link %} • <a class="flex-none font-normal no-underline" href="{{ post.url }}">Permalink</a>{% endif %}
|
||||
</time>
|
||||
</div>
|
||||
<p class="p-summary mt-0">{{ post.data.post_excerpt | markdown }}</p>
|
||||
{% unless post.data.link %}
|
||||
<div class="mt-4 flex items-center justify-between">
|
||||
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more →</a>
|
||||
</div>
|
||||
{% endunless %}
|
||||
</div>
|
||||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%m.%Y" }}
|
||||
</time>
|
||||
<p class="p-summary">{{ post.data.post_excerpt | markdown }}</p>
|
||||
<a class="no-underline read-more" href="{{ post.url }}">
|
||||
Read more
|
||||
{% tablericon "arrow-right" "Read more" %}
|
||||
</a>
|
||||
</article>
|
||||
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}
|
||||
|
|
Reference in a new issue