New Theme
This commit is contained in:
26
_includes/components/post-meta.html
Normal file
26
_includes/components/post-meta.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<div class="sticky-top space-before">
|
||||
<div class="card bg-light mb-3">
|
||||
<div class="card-body">
|
||||
<div class="card-title">
|
||||
<h5>{{ page.date | date_to_string }}</h5>
|
||||
</div>
|
||||
<div class="d-flex flex-wrap align-items-center">
|
||||
<span class="icon grey mr-2 mb-2">
|
||||
{%include entypo/price-tag.svg %}
|
||||
</span>
|
||||
{% for tag in page.tags %}
|
||||
<a href="{% link list/posts.html %}#{{ tag | slugify }}"
|
||||
class="bg-white border rounded p-1 mr-2 mb-2 d-inline-block">
|
||||
{{ tag }}
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="d-flex align-items-center mt-2">
|
||||
<span class="icon grey mr-1">
|
||||
{% include entypo/arrow-left.svg %}
|
||||
</span>
|
||||
<a href="{% link list/posts.html %}">Back to all posts</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user