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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-02-13 20:30:33 +0300
committerDillon <dillonzq@outlook.com>2020-02-13 20:30:33 +0300
commit12bd1e1935584ab2fd77d47332e75931f0d71ed9 (patch)
tree0b8611db42c4b847c3694be58cf976c2cd0ab10f /layouts/_default/single.html
parent917cf4a42754372aa8b1a9b10d12d07be6307e94 (diff)
chore: refactor code style
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index fc75ec3..4f20bc5 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,14 +1,14 @@
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
{{- define "content" -}}
- <div class="page single">
+ <div class="page single special">
{{- /* Title */ -}}
- <h1 class="post-title animated pulse faster">
+ <h1 class="single-title animated pulse faster">
{{- .Title -}}
</h1>
{{- /* Content */ -}}
- <div class="post-content">
+ <div class="content">
{{- partial "hook/content.html" .Content | safeHTML -}}
</div>
</div>