Files
Ludovic Bouchard daf6b8f55f
Some checks failed
Deploy Hugo site / deploy (push) Failing after 47s
First template
2026-03-16 22:25:02 +01:00

30 lines
746 B
HTML

{{ define "main" }}
<article class="section project-single">
<p class="eyebrow">Project</p>
<h1>{{ .Title }}</h1>
{{ with .Description }}
<p class="lead">{{ . }}</p>
{{ end }}
<div class="project-links">
{{ with .Params.project_url }}
<a class="button button-primary" href="{{ . }}">Live Project</a>
{{ end }}
{{ with .Params.repo_url }}
<a class="button button-secondary" href="{{ . }}">Source Code</a>
{{ end }}
</div>
{{ with .Params.tags }}
<ul class="tag-list tag-list-spaced">
{{ range . }}
<li>{{ . }}</li>
{{ end }}
</ul>
{{ end }}
<div class="content-body">
{{ .Content }}
</div>
</article>
{{ end }}