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

github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsun6eal <jacob.sun.meta@gmail.com>2019-05-16 06:46:03 +0300
committersun6eal <jacob.sun.meta@gmail.com>2019-05-16 06:46:03 +0300
commitb0afb7931a5b1793225477f2b0c01fdb66daedae (patch)
treef86402605d7f33ad44db2688290a7b0a0a2f142e
parent54221579d5a891bd424a7fe8e459c772e127e4ca (diff)
updatev0.1.0
-rw-r--r--layouts/partials/header.html4
-rw-r--r--static/css/edidor.css1
2 files changed, 3 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index e3881ab..1f2d11e 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -27,13 +27,13 @@
{{ range .Site.Menus.main }}
{{ if .HasChildren }}
<li class="{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}">
- <a href="#" class="btn">
+ <a class="btn">
{{ .Name }}
</a>
<ul class="sub-menu control">
{{ range .Children }}
<li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
- <a href="{{ .URL | absURL }}" class="btn {{ if eq .Name "Toggle Sidebar" }}sidebar-toggler{{ end }}{{ if eq .Name "Light" }}to-light-mode{{ end }}{{ if eq .Name "Dark" }}to-dark-mode{{ end }}{{ if eq .Name "Wild" }}to-wild-mode{{ end }}">{{ .Name }}</a>
+ <a href="{{ .URL }}" class="btn {{ if eq .Name "Toggle Sidebar" }}sidebar-toggler{{ end }}{{ if eq .Name "Light" }}to-light-mode{{ end }}{{ if eq .Name "Dark" }}to-dark-mode{{ end }}{{ if eq .Name "Wild" }}to-wild-mode{{ end }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
diff --git a/static/css/edidor.css b/static/css/edidor.css
index 66d82ad..f4bafaa 100644
--- a/static/css/edidor.css
+++ b/static/css/edidor.css
@@ -38,6 +38,7 @@ img {
.btn {
text-decoration: none;
+ cursor: pointer;
}
.control {