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

16 lines
618 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>
2017-12-31 18:49:52 +00:00
<div class="container mt-3 text-center">
<small>Share this post</small>
<h3>
<a href="https://twitter.com/intent/tweet?text={{ .Permalink }}"><i class="mx-1 fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}"><i class="mx-1 fa fa-facebook" aria-hidden="true"></i></a>
<a href="http://www.reddit.com/submit?url={{ .Permalink }}"><i class="mx-1 fa fa-reddit" aria-hidden="true"></i></a>
</h3>
</div>
2017-10-26 21:54:02 +01:00
</div>
{{ end }}