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

html-head.html « partials « layouts - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41b0143ba69abdc99395ce603e1758acb3c7de87 (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
59
60
61
62
63
64
65
66
67
68
69
70
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="revised" content="{{ now.Format "2006-01-02T15:04:05 MST" }}">
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">

{{ with .Site.Params.author }}
<meta name="author" content="{{ . }}">
{{ end }}

<title>{{ .Title }} :: {{ .Site.Title }}</title>


<link rel="shortcut icon" href='{{"images/favicon.png" | relURL}}' type="image/x-icon" />
 

<link rel="preload" as="style" href='{{"/fonts/Montserrat/Montserrat.css" | relURL}}'>
<link rel="stylesheet" href='{{ (resources.Get "sass/layout.scss" | toCSS).Permalink }}'>
<link rel="stylesheet" href='{{ (resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "style.main.scss" . | toCSS).Permalink }}'>
<link rel="stylesheet" href='{{ (resources.Get "sass/menu.scss" | resources.ExecuteAsTemplate "style.menu.scss" . | toCSS).Permalink }}'>


<!-- <link rel="stylesheet" type="text/css" href='{{ (resources.Get "sass/shortcodes/button.scss" | toCSS).Permalink }}'> -->

<!-- <link rel="stylesheet" href='{{"vendor/bootstrap/bootstrap-4.5.0-dist/css/bootstrap.min.css" | relURL}}'  crossorigin="anonymous"> -->

<!-- <link href='{{"vendor/FontAwesome/fontawesome-free-5.13.1-web/css/all.css" | relURL}}' rel="stylesheet">  -->
<!--load all styles -->

<link rel="stylesheet" href="{{"/vendor/materialize/material-icons.css"|relURL}}" type="text/css">


<link rel="stylesheet" href='{{"/css/docport.css" | relURL}}'>
<style type="text/css">

.ddexp{
cursor: pointer;
}

i.keyboard_arrow_right:before {
  content: "chevron_right"
}

i.keyboard_arrow_down:before {
  content: "expand_more"
}

i.chevron_right:before {
  content: "chevron_right"
}

i.expand_more:before {
  content: "expand_more"
}

</style>


<script src='{{"vendor/jquery/jquery-3.5.1.min.js" | relURL}}'></script>
<script src='{{"js/docport.js" | relURL}}'></script>

<script type="text/javascript">
      var baseurl = "{{.Site.BaseURL}}";
</script>


{{ template "_internal/google_analytics.html" . }}


{{- partial "head.html" . }}