1
Fork 0
theorangeone.net-legacy/layouts/projects/single.html

29 lines
906 B
HTML
Raw Normal View History

2017-05-06 16:08:40 +01:00
{{ partial "page_start.html" . }}
<div id="page-wrapper">
<section id="main" class="container">
<header>
<h2>{{ title .Title }}</h2>
{{ if .Params.subtitle }}
2017-05-07 19:22:33 +01:00
<p>{{ markdownify .Params.subtitle }}</p>
2017-05-06 16:08:40 +01:00
{{ end }}
</header>
<div class="box">
2017-05-06 18:34:10 +01:00
{{ if .Params.image }}
<span class="image featured"><img src="{{ .Params.image }}" alt="{{ .Title }} image" /></span>
{{ end }}
2017-05-06 16:08:40 +01:00
{{ .Content }}
</div>
<div class="box">
<ul class="actions fir">
{{ if .Params.download_url }}
<li><a class="button special fit" href="{{ .Params.download_url }}">Download {{ .Title }}</a></li>
{{ end }}
{{ if .Params.repo }}
<li><a class="button special fit" href="{{ .Params.repo }}"><i class="fa fa-github fa-lg"></i> View Source</a></li>
{{ end }}
</ul>
</div>
</section>
</div>
{{ partial "page_end.html" . }}