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

index.html « layouts - github.com/siegerts/hugo-theme-basic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4379522c1f0891727ce8dc41d183685ed3bb8e5 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html
  class=""
  lang="{{ .Site.LanguageCode }}"
  prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"
>
  <head>
    <meta charset="utf-8" />

    {{ partial "meta.html" . }}

    <base href="{{ .Site.BaseURL }}" />
    <title>{{ .Site.Title }}</title>
    <link rel="canonical" href="{{ .Permalink }}" />
    <link
      href="{{ .RSSLink }}"
      rel="alternate"
      type="application/rss+xml"
      title="{{ .Site.Title }}"
    />

    {{ partial "head_includes.html" . }}
  </head>
  <body
    lang="{{ .Site.LanguageCode }}"
    class="sans-serif w-90 w-60-ns center center-ns mv2 mv5-ns"
  >
    <section id="main">
      <div>
        <h1 id="title" class="f3 pl3">{{.Site.Title}} ☕ 🐶</h1>
        <ul>
          <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>
          </li>
        </ul>
      </div>
    </section>

    {{ partial "footer.html" . }}
  </body>
</html>