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

head.html « partials « layouts - github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f8cacb9f2c50670f47aead0f1429c5be72e5cb5 (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
50
51
52
53
54
55
56
57
58
<head>
  <title>{{ .Site.Title }}</title>
  <meta charset="utf-8" />
  <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  <meta name="description" content="{{ .Site.Params.description }}" />
  <meta name="author" content="{{ .Site.Params.author }}" />

  <link
    rel="stylesheet"
    href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
  />
  <link
    rel="stylesheet"
    href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
  />
  <link
    href="https://fonts.googleapis.com/css?family=Overlock"
    rel="stylesheet"
  />

  <script>
    setColors = function() {
      let images = document.querySelectorAll("img");
      images.forEach(elem => elem.classList.add("img-fluid", "rounded"));

      let imagecaption = document.querySelectorAll("figcaption");
      imagecaption.forEach(elem => elem.classList.add("initialism"));
    };
    window.onload = setColors;
  </script>

  <style>
    html,
    body {
      height: 100%;
    }
    .wrapper {
      min-height: 100%;
      margin-bottom: -100px;
      padding-bottom: 100px;
    }
    footer {
      height: 100px;
    }
    a {
      color: #ffc107 !important;
    }
    code {
      color: #17a2b8 !important;
    }
    a:hover {
      text-decoration: none;
    }
    * {
      font-family: "Overlock", cursive;
    }
  </style>
</head>