33 lines
840 B
HTML
33 lines
840 B
HTML
{{ define "main" }}
|
|
<article class="post">
|
|
<header class="project-header">
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
|
|
{{ with .Params.description }}
|
|
<p class="project-description">{{ . }}</p>
|
|
{{ end }}
|
|
|
|
{{ with .Params.tags }}
|
|
<ul class="project-tags">
|
|
{{ range . }}<li>{{ . }}</li>{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
{{ if or .Params.github .Params.url }}
|
|
<div class="project-links">
|
|
{{ with .Params.github }}<a href="{{ . }}" target="_blank" rel="noopener">GitHub →</a>{{ end }}
|
|
{{ with .Params.url }}<a href="{{ . }}" target="_blank" rel="noopener">Live Site →</a>{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</header>
|
|
|
|
<div class="post-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
<footer class="post-footer">
|
|
<a href="/projects">← Back to Projects</a>
|
|
</footer>
|
|
</article>
|
|
{{ end }}
|