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

baseof.html « _default « layouts - github.com/leonhe/hugo_eiio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6dc0d14552948b31f087f570348b455a93aa068 (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
71
72
73
74
75
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
   <head>
   <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="google-site-verification" content="XN4YmHgE76jTp2kNQ9qnsVSApl6yIQBzdyLe0BnbFks" />
  <meta name="Description" content="{{ .Site.Title }} | {{ .Site.Params.description }}">
  <title>
    {{ if .IsHome }}
    {{ block "title" . }}{{ .Site.Title }}{{ end }} | {{ .Site.Params.description }}
    {{ end }}
    {{ if not .IsHome }}
    {{ .Title }} - {{ .Site.Title }}
    {{ end }}
  </title>
  <link rel="shortcut icon" href="/favicon.ico" />
  {{ if .Site.Params.securityPolicy }}
     <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
    {{ end }}
  <link rel="stylesheet" href="/css/bootstrap.min.css" media="all">
  <link rel="stylesheet" href="/css/bootstrap-theme.min.css">

<script src="/js/jquery.min.js"></script>
  <link rel="stylesheet" href="/css/style.css">
  <link rel="stylesheet" href="/highlight/styles/{{ .Site.Params.hljsStyle }}.css">  
  <script src="/highlight/highlight.pack.js" type='text/javascript'></script>
  <script src="/js/bootstrap.min.js"></script>
 <script src="/js/holder.min.js" type='text/javascript'></script>
<script src="https://unpkg.com/ionicons@4.2.2/dist/ionicons.js"></script>
  <script type="text/javascript">
    $(document).ready(function() {
	hljs.initHighlightingOnLoad();
    $('div src').each(function(i, block) {
	hljs.highlightBlock(block);
    });
$("pre code").each(function(){
$(this).html("<ul><li>" + $(this).html().replace(/\n/g,"\n</li><li>") +"\n</li></ul>");
});
});
  </script>


  <link rel="canonical" href="{{ .Permalink }}">
  <link href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" rel="alternate" type="application/rss+xml" title="{{ .Title }}" />
   </head>
   <body data-spy="scroll" data-target="#toc">
     {{ partial "nav" . }}
     <div class="jumbotron masthead" role="main">
       <div class="container">
	 <div class="row">

 	   <div class="col-lg-8 col-lg-offset-2 ">
	   {{ block "main" . }}
      <!-- The part of the page that begins to differ between templates -->
      {{ end }}
	 </div>

	 </div>
       </div>
     </div>
<!-- start footer --->
 <div class="container footer">
  <div class="row">
    <div class="col-lg-10">
      <small class="text-muted">{{ .Site.Copyright }} Theme:<a href="https://hii8.com/">LeonHe</a></small>
    </div>
    <div class="col-lg-2">
      <small class="text-muted"><a href='http://www.beian.miit.gov.cn/' />{{ .Site.Params.footerRight}}</a></small>
      </div>
   </div>
 </div>
{{ template "_internal/google_analytics.html" . }}
   </body>
     </html>