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:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 8ff7026..a762b4d 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,12 +1,8 @@
<!DOCTYPE html>
-<html lang="{{ .Site.Language }}">
+<html lang="{{ .Site.Language }}" class="{{ .Site.Params.theme }}">
{{- partial "head.html" . -}}
- <body
- class="bg-dark container mt-2 mb-2"
- style="font-family: 'Roboto', sans-serif;"
- >
+ <body class="max-w-screen-md mx-auto prose dark:prose-dark px-2 pb-4 bg-gray-100 dark:bg-dark1 duration-250">
{{- partial "header.html" . -}}
- <div id="content">{{- block "main" . }}{{ end }}</div>
- {{- partial "footer.html" . -}}
+ <main class="flex sm:flex-row-reverse flex-row flex-wrap">{{- block "main" . }}{{ end }}</main>
</body>
</html>