added blog

This commit is contained in:
timurgordon
2022-04-23 15:02:43 +04:00
parent 53954736c1
commit 92c9f76980
99 changed files with 1606 additions and 153 deletions

View File

@@ -4,10 +4,13 @@
<div class="relative lg:ml-8 my-8 w-full md:w-auto">
<h3 class="text-base not-italic leading-6 text-gray-600">FEATURED POST</h3>
<a href={{featured.permalink}} class="">
<h2 class="mt-8 text-2xl sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-4 md:mb-10 ">
<h2 class="mt-8 text-2xl sm:text-3xl md:text-4xl lg:text-5xl fw-500 leading-snug font-normal mb-2 md:mb-4">
{{ featured.title }}
</h2>
</a>
<p class="mb-4 md:mb-10 text-lg lg:pr-4">
{{featured.description}}
</p>
<h4 class="text-sm not-italic font-light leading-6 text-gray-600">
{{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} -

View File

@@ -17,7 +17,7 @@
{% endif %}
{% endblock title %}
<!-- Required meta tags -->
<!-- Required meta categories -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">

View File

@@ -2,7 +2,7 @@
<a href="{{page.permalink}}" class="text-lg font-medium cursor-pointer text-blue-400 py-4">
{{page.title | safe}}
</a>
{% include "partials/tags.html" %}
{% include "partials/categories.html" %}
<p>
{{page.description | safe}}
</p>

View File

@@ -1,5 +1,5 @@
<div class="flex mb-4">
{% for tag in page.taxonomies.tags %}
{% for tag in page.taxonomies.categories %}
<div class="bg-gray-200 rounded font-semibold text-xs w-auto px-2 py-1 mr-2">{{tag}}</div>
{% endfor %}
</div>

View File

@@ -16,7 +16,7 @@
{{ page.title }}
</h1>
<p class="my-4">{{page.description}}</p>
{% include "partials/tags.html" %}
{% include "partials/categories.html" %}
</div>
{{ page.content | safe }}
</article>