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

github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2019-11-03 04:20:32 +0300
committerDarshan Baral <darshanbaral@gmail.com>2019-11-03 04:20:32 +0300
commitadc5d9c3a2a791a7719b4844e3261bea492d6d15 (patch)
tree5270312a4a85973cb457d20d009c63741bf39dd8
parente143ea142aab87a3d36a678e2516f1c3e143b155 (diff)
Uses 'baseof' now
-rw-r--r--layouts/_default/baseof.html19
1 files changed, 10 insertions, 9 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 5f8e2ec..8ff7026 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,11 +1,12 @@
<!DOCTYPE html>
-<html>
- {{- partial "head.html" . -}}
- <body>
- {{- partial "header.html" . -}}
- <div id="content">
- {{- block "main" . }}{{- end }}
- </div>
- {{- partial "footer.html" . -}}
- </body>
+<html lang="{{ .Site.Language }}">
+ {{- partial "head.html" . -}}
+ <body
+ class="bg-dark container mt-2 mb-2"
+ style="font-family: 'Roboto', sans-serif;"
+ >
+ {{- partial "header.html" . -}}
+ <div id="content">{{- block "main" . }}{{ end }}</div>
+ {{- partial "footer.html" . -}}
+ </body>
</html>