2021-11-11 16:58:52 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="flex items-center flex-col md:mt-10">
|
|
|
|
<h1 class="text-2xl text-bold mb-6">
|
|
|
|
{{ page.title }}
|
|
|
|
</h1>
|
|
|
|
<div class="flex flex-col gap-y-6 w-2/3">
|
|
|
|
|
2021-11-11 20:12:56 +00:00
|
|
|
<div class="border border-2 border-gray-200 dark:border-black rounded-xl p-5 shadow-2xl transform transition duration-500 hover:scale-105 bg-gray-200 dark:bg-gray-800">
|
|
|
|
<div class="flex flex-col py-2 justify-center">
|
|
|
|
<!-- <h2 class="text-2xl text-bold"><a href='{{ page.permalink }}'>{{ page.title }}</a></h2> -->
|
|
|
|
<p class="text-bold">{{ page.description }}</p>
|
|
|
|
</div>
|
2021-11-11 16:58:52 +00:00
|
|
|
|
2021-11-11 20:12:56 +00:00
|
|
|
<!-- Read time and word count -->
|
|
|
|
<div class="flex flex-wrap py-2">
|
|
|
|
<div class="flex items-center w-1/3">
|
|
|
|
<div class="flex space-x-3 text-gray-900 dark:text-gray-400">
|
|
|
|
<span class="flex">
|
|
|
|
<!-- Icon clock -->
|
2021-11-11 16:58:52 +00:00
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
2021-11-11 20:12:56 +00:00
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
2021-11-11 16:58:52 +00:00
|
|
|
</svg>
|
2021-11-11 20:12:56 +00:00
|
|
|
<span class="ml-1">{{ page.reading_time }} min</span>
|
2021-11-11 16:58:52 +00:00
|
|
|
</span>
|
2021-11-11 20:12:56 +00:00
|
|
|
<span class="flex">
|
|
|
|
<!-- Icon pencil -->
|
2021-11-11 16:58:52 +00:00
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
2021-11-11 20:12:56 +00:00
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z"></path>
|
2021-11-11 16:58:52 +00:00
|
|
|
</svg>
|
2021-11-11 20:12:56 +00:00
|
|
|
<span class="ml-1">{{ page.word_count }} words</span>
|
2021-11-11 16:58:52 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-11 20:12:56 +00:00
|
|
|
<!-- Author and publish date -->
|
|
|
|
<div class="flex w-2/3 space-x-3 text-gray-900 dark:text-gray-400">
|
|
|
|
<span class="flex items-center">
|
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
|
|
|
|
</svg>
|
|
|
|
<span class="ml-1"><time datetime="{{ page.date }}">Published on {{ page.date | date(format='%B %d, %Y') }}</time></span>
|
|
|
|
</span>
|
|
|
|
<span class="flex items-center">
|
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"></path>
|
|
|
|
</svg>
|
|
|
|
{% if page.extra.author.name %}
|
|
|
|
<span class="ml-1">{{ page.extra.author.name }}</span>
|
|
|
|
{% if page.extra.author.avatar %}
|
|
|
|
<img class="rounded-full h-9 w-9 ml-1" src="{{ page.extra.author.avatar }}">
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<span class="ml-1">{{ config.extra.default_author.name }}</span>
|
|
|
|
<img class="rounded-full h-9 w-9 ml-1" src="{{ config.extra.default_author.avatar }}">
|
2021-11-11 16:58:52 +00:00
|
|
|
{% endif %}
|
2021-11-11 20:12:56 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Categories and Tags -->
|
|
|
|
<div class="flex flex-wrap py-2">
|
|
|
|
<div class="w-2/3">
|
|
|
|
{% if page.taxonomies.categories %}
|
2021-11-11 16:58:52 +00:00
|
|
|
<p>
|
2021-11-11 20:12:56 +00:00
|
|
|
Categories:
|
|
|
|
{% for category in page.taxonomies.categories %}
|
|
|
|
<a class="text-gray-900 dark:text-gray-400 flex py-1 items-center" href="{{ get_taxonomy_url(kind='categories', name=category) }}">
|
2021-11-11 16:58:52 +00:00
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
2021-11-11 20:12:56 +00:00
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path>
|
2021-11-11 16:58:52 +00:00
|
|
|
</svg>
|
2021-11-11 20:12:56 +00:00
|
|
|
<span class="pl-1">{{category}}</span>
|
2021-11-11 16:58:52 +00:00
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2021-11-11 20:12:56 +00:00
|
|
|
{% endif %}
|
2021-11-11 16:58:52 +00:00
|
|
|
</div>
|
2021-11-11 20:12:56 +00:00
|
|
|
<div class="w-1/3">
|
|
|
|
{% if page.taxonomies.tags %}
|
|
|
|
<p>
|
|
|
|
Tags:
|
|
|
|
{% for tag in page.taxonomies.tags %}
|
|
|
|
<a class="text-gray-900 dark:text-gray-400 flex py-1 items-center" href="{{ get_taxonomy_url(kind='tags', name=tag) }}">
|
|
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 7h.01M7 3h5c.512 0 1.024.195 1.414.586l7 7a2 2 0 010 2.828l-7 7a2 2 0 01-2.828 0l-7-7A1.994 1.994 0 013 12V7a4 4 0 014-4z"></path>
|
|
|
|
</svg>
|
|
|
|
<span class="pl-1">{{tag}}</span>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2021-11-11 16:58:52 +00:00
|
|
|
</div>
|
2021-11-11 20:12:56 +00:00
|
|
|
</div>
|
2021-11-11 16:58:52 +00:00
|
|
|
|
2021-11-11 20:12:56 +00:00
|
|
|
<!-- Content -->
|
|
|
|
<div class="text-bold mt-2">
|
|
|
|
{{ page.content | safe }}
|
2021-11-11 16:58:52 +00:00
|
|
|
</div>
|
2021-11-11 20:12:56 +00:00
|
|
|
|
|
|
|
</div>
|
2021-11-11 16:58:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|