Contenido de las static pages de sergio.am
https://sergio.am
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
783 B
27 lines
783 B
--- |
|
title: Tags |
|
permalink: /tags/ |
|
layout: page |
|
excerpt: Sorted article by tags. |
|
--- |
|
|
|
<div class="archive-tags"> |
|
<a class="tag-item" href="#">all</a> |
|
{%- for tag in site.tags -%} |
|
{% capture name %}{{ tag | first }}{% endcapture %} |
|
<a class="tag-item" href="#{{name}}">{{ name }}</a> |
|
{%- endfor -%} |
|
</div> |
|
|
|
{%- for tag in site.tags -%} |
|
{%- capture name -%}{{ tag | first }}{%- endcapture -%} |
|
<h2 id="{{ name }}">{{ name | upcase }}</h2> |
|
{%- for post in site.tags[name] -%} |
|
<article class="post-item" id="results-container"> |
|
<span class="post-item-date">{{ post.date | date: "%b %d, %Y" }}</span> |
|
<h3 class="post-item-title"> |
|
<a href="{{ post.url }}">{{ post.title | escape }}</a> |
|
</h3> |
|
</article> |
|
{%- endfor -%} |
|
{%- endfor -%} |