mirror of
https://github.com/tchartron/blow
synced 2024-11-23 12:53:20 +00:00
update
This commit is contained in:
parent
c25c9bb86b
commit
3829799a9e
1 changed files with 10 additions and 14 deletions
|
@ -74,13 +74,11 @@
|
|||
<p>
|
||||
Categories:
|
||||
{% for category in page.taxonomies.categories %}
|
||||
<a class="text-gray-900 dark:text-gray-400" href="{{ get_taxonomy_url(kind='categories', name=category) }}">
|
||||
<span class="">
|
||||
<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="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>
|
||||
</svg>
|
||||
<span>{{category}}</span>
|
||||
</span>
|
||||
<a class="text-gray-900 dark:text-gray-400 flex space-x-2" href="{{ get_taxonomy_url(kind='categories', name=category) }}">
|
||||
<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="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>
|
||||
</svg>
|
||||
<span>{{category}}</span>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</p>
|
||||
|
@ -91,13 +89,11 @@
|
|||
<p>
|
||||
Tags:
|
||||
{% for tag in page.taxonomies.tags %}
|
||||
<a class="text-gray-900 dark:text-gray-400" href="{{ get_taxonomy_url(kind='tags', name=tag) }}">
|
||||
<span class="">
|
||||
<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>{{tag}}</span>
|
||||
</span>
|
||||
<a class="text-gray-900 dark:text-gray-400 flex space-x-2" 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>{{tag}}</span>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</p>
|
||||
|
|
Loading…
Reference in a new issue