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

menu.html « partials « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f47080e0168f82ca19d24b37554918c8a909facd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div
  class="slide-menu collapsed"
  style="
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #19092be3;
    transition: all 0.5s;
    position: fixed;
    left: 0;
    top: -100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  "
>
  <div
    style="
      background-color: var(--bgColor);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 6px;
      border: solid 1px var(--textColor);
      border-radius: 5px;
      box-shadow: 3px 3px 5px 2px black;
    "
  >
    <a class="menu-item" href="/">Home</a>

    {{ range .Site.Sections }}
    <a class="menu-item" href="{{ .Permalink }}">{{ .Title }}</a>
    {{ end }}
  </div>
</div>