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

base.tpl.xml « xml « assets - github.com/de-souza/hugo-flex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de6aaf6242691ea8b7b007964ee994c7d871dab4 (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
{{ safeHTML `<?xml version="1.0" encoding="utf-8" ?>` }}
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" doctype-system="about:legacy-compat" />
  <xsl:template match="/rss/channel">
    <html lang="{{ site.LanguageCode }}">
      <head>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        {{ hugo.Generator }}
        <title><xsl:value-of select="title" /></title>
        {{ $site_css := (.Scratch.Get "css").base }}
        <link rel="stylesheet" href="{{ $site_css.Permalink }}" integrity="{{ $site_css.Data.Integrity }}" />
      </head>
      <body>
        <nav class="u-background">
          <div class="u-wrapper">
            <ul class="Banner">
              <li class="Banner-item Banner-item--title">
                <a class="Banner-link u-clickable" href="{{ absURL nil }}">{{ site.Title }}</a>
              </li>
              {{ range site.Menus.nav }}
                <li class="Banner-item">
                  <a class="Banner-link u-clickable" href="{{ absURL .URL }}">{{ .Name }}</a>
                </li>
              {{ end }}
            </ul>
          </div>
        </nav>
        <main>
          <div class="u-wrapper">
            <div class="u-padding">
              <h2 class="Heading-title">
                <a class="Heading-link u-clickable" href="{link}" rel="bookmark"><xsl:value-of select="title" /></a>
              </h2>
              {{ with site.Params.rss }}
                <p>
                  {{ safeHTML . }}
                </p>
              {{ end }}
            </div>
          </div>
        </main>
        {{ with site.Params.footer }}
          <footer class="Footer">
            <div class="u-wrapper">
              <div class="u-padding">
                {{ safeHTML . }}
              </div>
            </div>
          </footer>
        {{ end }}
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>