30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% capture time %}{{ content | reading_time }}{% endcapture %}
|
|
|
|
{% assign categories = page.categories %}
|
|
{% assign category = site.data.categories[categories.first] %}
|
|
|
|
{% assign tags = page.tags %}
|
|
|
|
<p style="font-family:Rubik;font-weight:500;">
|
|
<i class="fas fa-calendar"></i> {{ page.date | date_to_string }}
|
|
|
|
|
<i class="fas fa-clock"></i> {{ content | reading_time | pluralize: "minute" }}
|
|
|
|
|
<span style="background-color:{{category.backColor}};color:{{category.textColor}};"> <a class="text-decoration-none" style="color:{{category.textColor}}" href="/blog/category/{{ categories.first }}"><i class="fas fa-folder"></i> {{ categories.first }}</a> </span>
|
|
|
|
|
<i class="fas fa-tag"></i>
|
|
{% for tag in tags %}
|
|
<span style="background-color:#171717;color:white;font-family:Rubik;padding:3px;border-radius:10px;"><a class="text-decoration-none" href="/blog/tag/{{ tag }}">{{ tag }}</a></span>
|
|
{% if tag != tags.last %}
|
|
,
|
|
{% endif %}
|
|
{% endfor %}
|
|
</p>
|
|
<hr>
|
|
|
|
{{ content }}
|