Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Alineación y estilo arreglados para metadatos de artículos #151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion layouts/partials/article-meta.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{{ if (isset .Params "audio") }}
{{ else }}
<div class="article-meta" style="display: flex; align-items: center; gap: 10px;">
<time itemprop="datePublished" datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}'>
{{ .Date.Day }} {{ index $.Site.Data.months (printf "%d" .Date.Month) }} {{ .Date.Year }}
</time>
·
<span>{{.ReadingTime}} minutos de lectura</span>
·
<a target="_blank" rel="noopener nofollow" href='https://github.com/midudev/midu.dev/edit/master/content/posts/{{.File.LogicalName}}'>
<a target="_blank" rel="noopener nofollow" href='https://github.com/midudev/midu.dev/edit/master/content/posts/{{.File.LogicalName}}' style="display: inline-flex; align-items: center;">
¿Una errata? Edita el artículo {{ partial "icons/github.html" . }}
</a>
</div>
{{ end }}