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

26 lines
691 B
HTML
Raw Normal View History

2017-10-26 21:54:02 +01:00
{{ define "main" }}
<div id="main">
<div class="container">
2017-10-27 22:56:44 +01:00
{{ partial "content.html" . }}
2017-10-26 21:54:02 +01:00
</div>
2022-05-10 22:21:39 +01:00
{{ with .Scratch.Get "unsplash_data" }}
<div class="container text-center my-4">
<small><a href="#header">Header</a> photo by <a href="{{ .user.links.html }}">{{ .user.name }}</a> on <a href="{{ .links.html }}">Unsplash</a>.</small>
</div>
{{ end }}
{{ partial "share.html" . }}
{{ partial "related-content.html" . }}
2017-10-26 21:54:02 +01:00
</div>
{{ end }}
{{ define "style_extra" }}
{{ partial "style.html" "css/shareon.css" }}
{{ partial "style.html" "css/highlight.css" }}
{{ end }}
{{ define "scripts_extra" }}
{{ partial "script_async.html" "js/shareon.js" }}
{{ end }}