clean up
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
253b2fb05a
commit
78f5e31764
|
@ -1,6 +1,9 @@
|
||||||
- title: Inicio
|
- title: Inicio
|
||||||
url: /
|
url: /
|
||||||
|
|
||||||
|
- title: Código fuente
|
||||||
|
url: https://sergio.am/code/sergio.am
|
||||||
|
|
||||||
- title: Sobre este sitio
|
- title: Sobre este sitio
|
||||||
url: /about/
|
url: /about/
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span class="footer_item"><a href="/LICENSE">© {{ site.time | date: "%Y" }} Sergio Álvarez</a> ▁ <a href="https://sergio.am/code/sergio.am">Código fuente y versionado</a></span>
|
<span class="footer_item"><a href="/LICENSE">© Sergio Álvarez</a> <span title="Last build">🔨 {{ site.time | date: "%d %b %Y" }}</span></span>
|
||||||
</footer>
|
</footer>
|
||||||
<script src="/assets/js/main.js" defer="defer"></script>
|
<script src="/assets/js/main.js" defer="defer"></script>
|
||||||
|
|
||||||
|
|
|
@ -34,26 +34,33 @@ layout: compress
|
||||||
<article itemscope itemtype="https://schema.org/BlogPosting">
|
<article itemscope itemtype="https://schema.org/BlogPosting">
|
||||||
|
|
||||||
<header class="header">
|
<header class="header">
|
||||||
{% if page.tags and page.tags != empty %}
|
|
||||||
<div class="tags">
|
|
||||||
{% assign tags = page.tags %}
|
|
||||||
<span itemprop="keywords">
|
|
||||||
{% for tag in tags %}
|
|
||||||
<a class="tag"
|
|
||||||
href="/tags/#{{tag | downcase | slugify}}">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %}
|
|
||||||
{% endfor %}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
<h1 class="header-title" itemprop="headline">{{ page.title | escape }}</h1>
|
<h1 class="header-title" itemprop="headline">{{ page.title | escape }}</h1>
|
||||||
{% if page.date %}
|
{% if page.date %}
|
||||||
<div class="post-meta">
|
<div class="post-meta">
|
||||||
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
||||||
{{ page.date | date: "%d %b %Y" }}
|
{{ page.date | date: "%d %b %Y" }}
|
||||||
</time>
|
</time>
|
||||||
<span itemprop="author" itemscope itemtype="https://schema.org/Person">
|
|
||||||
|
<span hidden itemprop="author" itemscope itemtype="https://schema.org/Person">
|
||||||
<span itemprop="name">{{ site.author.name }}</span>
|
<span itemprop="name">{{ site.author.name }}</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
{% if page.tags and page.tags != empty %}
|
||||||
|
<!--
|
||||||
|
<small class="tags">
|
||||||
|
{% assign tags = page.tags %}
|
||||||
|
<span itemprop="keywords">
|
||||||
|
<
|
||||||
|
{% for tag in tags %}
|
||||||
|
<a class="tag"
|
||||||
|
href="/tags/#{{tag | downcase | slugify}}">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %}
|
||||||
|
{% endfor %}
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</small>
|
||||||
|
-->
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<time hidden datetime="{{ page.modified | date_to_xmlschema }}" itemprop="dateModified">
|
<time hidden datetime="{{ page.modified | date_to_xmlschema }}" itemprop="dateModified">
|
||||||
{{ page.date | date: "%b %d, %Y" }}
|
{{ page.date | date: "%b %d, %Y" }}
|
||||||
</time>
|
</time>
|
||||||
|
|
Loading…
Reference in New Issue