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: 79f1607347467821bbaa2e3d503da172d523d15b (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
<html lang="{{ .Site.LanguageCode }}">
  <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>
      a {
        color: #ffc107 !important;
      }
      code {
        color: #17a2b8 !important;
      }
      a:hover {
        text-decoration: none;
      }
      * {
        font-family: "Overlock", cursive;
      }
    </style>
  </head>
</html>