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

github.com/AmazingRise/hugo-theme-diary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramazingrise <8315221+AmazingRise@users.noreply.github.com>2019-11-22 16:30:28 +0300
committeramazingrise <8315221+AmazingRise@users.noreply.github.com>2019-11-22 16:30:28 +0300
commit3b517cf4a58e56ce7582f311b4df65b096ee9172 (patch)
treee9fb28a92bd7199cd1cd4f8cacfe28eae2a0b29c /layouts/_default
parent999e81b8105a5eda4a1bdca61afbb204ebbb397f (diff)
Introduce journal.js successfully.
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index d8194a5..9b4fe3e 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -2,13 +2,16 @@
<html>
{{- partial "head.html" . -}}
<body>
+
<div id="app">
+ {{- partial "header.html" . -}}
{{- partial "sidebar.html" . -}}
{{- partial "extrabar.html" . -}}
- {{- partial "header.html" . -}}
+
<div id="content">
{{- block "main" . }}{{- end }}
</div>
</div>
+ <script src="/js/journal.js"></script>
</body>
</html>