15 lines
387 B
HTML
15 lines
387 B
HTML
|
{{ partial "head.html" . }}
|
||
|
<body>
|
||
|
{{ partial "sidebar.html" . }}
|
||
|
<div class="content-wrapper">
|
||
|
<div class="content-wrapper__inner">
|
||
|
<div class="post">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
{{ partial "script.html" .}}
|
||
|
</html>
|