Feat:New blog weeb unlocked and new page anime

This commit is contained in:
coolnsx
2025-06-09 00:03:46 +05:30
parent d9fb4e52c4
commit 73a606303e
7 changed files with 360 additions and 7 deletions

View File

@@ -12,10 +12,25 @@
{% block content %}
<h1 class="text-4xl md:text-5xl font-extrabold mb-8 text-center">
{{ page.title }}
{{ page.title }}
</h1>
<p class="subtitle text-sky-400"><strong>{{ page.date | date(format="%B %d, %Y") }}</strong></p>
<p class="subtitle">
{% if page.updated %}
Last Updated:
<strong class="text-sky-400">
<time datetime="{{ page.updated | date(format="%Y-%m-%d") }}">
{{ page.updated | date(format="%B %d, %Y") }}
</time>
</strong>
{% else %}
<strong class="text-sky-400">
<time datetime="{{ page.date | date(format="%Y-%m-%d") }}">
{{ page.date | date(format="%B %d, %Y") }}
</time>
</strong>
{% endif %}
</p>
{% if page.extra.image %}
{% set image = page.extra.image %}