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

baseof.html « _default « layouts - github.com/kc0bfv/autophugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ffe3b596f92e32e17d059792fe87d47e236a723 (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
<!DOCTYPE HTML>
{{ partial "lang.html" . }}
<head>
    <title>
    {{- block "title" . }}
        {{- with .Title }}{{ . }} - {{ end }}{{ .Site.Title -}}
    {{- end -}}
    </title>
{{ partial "head.html" . }}
</head>
<body class="loading">
        
    <div id="wrapper">

    {{ partial "header.html" . }}
        
        {{ block "main" . }}
            {{ partial "sect_and_img_content.html" . }}
        {{ end }}

    {{ partial "footer.html" . }}

    </div>

{{ partial "scripts.html" . }}

</body>
</html>