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

github.com/siegerts/hugo-theme-basic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html21
1 files changed, 10 insertions, 11 deletions
diff --git a/layouts/index.html b/layouts/index.html
index d437952..da1f073 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -27,19 +27,18 @@
>
<section id="main">
<div>
- <h1 id="title" class="f3 pl3">{{.Site.Title}} ☕ 🐶</h1>
- <ul>
+ <h1 id="title" class="f3">
+ {{.Site.Title}} {{ .Site.Params.TitleEmoji }}
+ </h1>
+ <ul class="list pl0">
+ <!-- pages -->
+ <!-- prettier-ignore -->
+ {{ range.Site.Params.menu }}
<li class="b mv3">
- <a class="f3 b pa1 black" href="/blog">blog</a>
- </li>
- <li class="b mv3">
- <a class="f3 b pa black " href="https://github.com/siegerts"
- >github</a
- >
- </li>
- <li class="b mv3">
- <a class="f3 b black" href="https://gitlab.com/siegerts">gitlab</a>
+ <a class="f3 b pa1 black" href="{{ .url }}">{{ .name }}</a>
</li>
+ <!-- prettier-ignore -->
+ {{ end }}
</ul>
</div>
</section>