divyam.dev/layouts/_default/single.html
Divyam Ahuja 2e5580024f
Some checks are pending
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
feat: complete unified hugo and typst resume workflow with github actions
2026-05-08 14:55:12 +05:30

25 lines
720 B
HTML

{{ define "main" }}
<article>
<div class="post-header">
<h1>{{ .Title }}</h1>
<div class="post-meta">
<span>{{ .Site.Params.author | upper }}</span>
<span class="separator">·</span>
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "02 Jan 2006" }}</time>
{{- with .Params.tags }}
<span class="separator">|</span>
<span class="post-tags">
{{- range . }}
<a href="{{ "tags/" | absURL }}{{ . | urlize }}/" class="post-tag">#{{ . }}</a>
{{- end }}
</span>
{{- end }}
</div>
</div>
<div class="post-content">
{{ .Content }}
</div>
<hr>
<a href="/" class="back-link">← back to home</a>
</article>
{{ end }}