mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
{{ template "theme/chrome/header.html" . }}
|
|
<div id="article">
|
|
<div class="article-title">{{ .Title }}</div>
|
|
<p class="meta"><small> <i class="fa fa-calendar-o"></i> {{ .Date.Format "2006-01-02" }}</small></p> <hr/>
|
|
<div class="post">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<a href="https://twitter.com/share" class="twitter-share-button " data-size="small" data-count="none">Tweet</a>
|
|
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
|
|
|
<ul class="pager">
|
|
|
|
{{with .Prev}} <li class="previous"><a href="{{.Permalink}}"> {{.Title}}</a></li>{{end}}
|
|
{{with .Next}} <li class="next"><a href="{{.Permalink}}"> {{.Title}}</a></li>{{end}}
|
|
|
|
</ul>
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
</ul>
|
|
</div>
|
|
{{ template "theme/chrome/footer.html" }}
|