27 lines
459 B
HTML
27 lines
459 B
HTML
{{ define "head" }}
|
|
|
|
<style type="text/css">
|
|
p {
|
|
text-align: center;
|
|
|
|
}
|
|
img {
|
|
max-width: 95%
|
|
}
|
|
</style>
|
|
|
|
{{ end }}
|
|
{{ define "title" }}
|
|
{{ .Title }} | {{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<div class="container mt-4 post">
|
|
<!-- <h1>{{ .Title }}</h1> -->
|
|
{{ partial "post-meta" . }}
|
|
|
|
<div class="mt-4 mb-4 main-content">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |