mirror of
https://github.com/tchartron/blow
synced 2024-11-27 06:40:31 +00:00
52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="flex items-center flex-col md:mt-10">
|
|
<h1 class="text-2xl text-bold mb-6">
|
|
{{ section.title }}
|
|
</h1>
|
|
<div class="flex flex-col gap-y-6 w-2/3">
|
|
{% if paginator %}
|
|
{% set pages = paginator.pages %}
|
|
{% else %}
|
|
{% set pages = section.pages %}
|
|
{% endif %}
|
|
|
|
<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='{{ section.permalink }}'>{{ section.title }}</a></h2> -->
|
|
<p class="text-bold">{{ section.description }}</p>
|
|
</div>
|
|
|
|
<!-- 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 -->
|
|
<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="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
|
</svg>
|
|
<span class="ml-1">{{ section.reading_time }} min</span>
|
|
</span>
|
|
<span class="flex">
|
|
<!-- Icon pencil -->
|
|
<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="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>
|
|
</svg>
|
|
<span class="ml-1">{{ section.word_count }} words</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Content -->
|
|
<div class="text-bold mt-2">
|
|
{{ section.content | safe }}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|