mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
15 lines
421 B
HTML
15 lines
421 B
HTML
|
{{ define "main" }}
|
||
|
<div class="container markdown top-pad">
|
||
|
{{ if .Params.image }}
|
||
|
<div class="has-text-centered">
|
||
|
<img src="{{ .Params.image | relURL }}" class="img-responsive" alt="{{ .Title }}">
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
<!-- End post content -->
|
||
|
<div class="disqus">
|
||
|
{{ template "_internal/disqus.html" . }}
|
||
|
</div>
|
||
|
{{ end }}
|