mirror of
https://github.com/JimenezJC/mshj_blog.git
synced 2025-12-06 09:19:55 -05:00
29 lines
No EOL
823 B
HTML
29 lines
No EOL
823 B
HTML
{{ define "main" }}
|
|
<article class="card-container">
|
|
<header><h1>{{ .Title }}</h1></header>
|
|
<div class="content-wrapper">
|
|
{{ if .Params.categories }}
|
|
<p>{{ .Date.Format "2006-01-02" }}</p>
|
|
<div class="tag-list">
|
|
<strong>Categories:</strong>
|
|
{{ range .Params.categories }}
|
|
<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}" class="tag-link">{{ . }}</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ if .Params.tags }}
|
|
<div class="tag-list">
|
|
<strong>Tags:</strong>
|
|
{{ range .Params.tags }}
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="tag-link">{{ . }}</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
<br>
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
|
|
</article>
|
|
{{ end }} |