18 lines
421 B
HTML
18 lines
421 B
HTML
{{ define "main" }}
|
|
<div id="main">
|
|
<div class="container">
|
|
{{ partial "content.html" . }}
|
|
</div>
|
|
{{ partial "share.html" . }}
|
|
{{ partial "related-content.html" . }}
|
|
</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 }}
|