Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html15
1 files changed, 5 insertions, 10 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 556d7bf..6db2850 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,14 +1,9 @@
{{ define "main" }}
-<div class="rounded p-2 aafu-border border">
- <div class="border-bottom aafu-border">
- <h1 class="top-h1" style="font-size: 2.75em;">
- {{- .Title -}}
- </h1>
- {{- partial "metadata" . -}}
- </div>
- <div class="content">
- {{ .Content }}
- </div>
+<div class="mb-3">
+ <h1 class="top-h1" style="font-size: 2.75em">{{- .Title -}}</h1>
+ <p class="mb-1">{{ .Date.Format "January 2, 2006" }}</p>
+ <p>&mdash;</p>
</div>
+<div class="content">{{ .Content }}</div>
{{ partial "prevnext" . }}
{{ end }}