aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/home.xslt.sitemap.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/_default/home.xslt.sitemap.xsl')
-rw-r--r--themes/default/layouts/_default/home.xslt.sitemap.xsl82
1 files changed, 40 insertions, 42 deletions
diff --git a/themes/default/layouts/_default/home.xslt.sitemap.xsl b/themes/default/layouts/_default/home.xslt.sitemap.xsl
index ce3fe98..e0be723 100644
--- a/themes/default/layouts/_default/home.xslt.sitemap.xsl
+++ b/themes/default/layouts/_default/home.xslt.sitemap.xsl
@@ -6,48 +6,48 @@
>
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" xml-data="sitemap">
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" data-xml="sitemap" data-document="xhtml">
<head>
<title>{{ $.Site.Title }} Site Map</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
- {{- partial "base-css.html" . -}}
+ {{- partial "head-css.html" . -}}
+ {{- partial "head-js.html" . -}}
</head>
<body>
- <column-left>
- </column-left>
- <column-middle>
- <main>
- <nav>
- <icon-button>
- <a onclick="window.history.go(-1); return false;" href="/">
- {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/arrow-left.svg")) }}
- <small>Back</small>
- </a>
- </icon-button>
- <section>
- <h2>{{ $.Site.Title }} Site Map</h2>
- <small>Site Map Preview</small>
- </section>
- {{ if .Site.Menus.main }}
- {{ range .Site.Menus.main }}
- <icon-navigator hidden="">
- <icon-button>
- <a
- id="nav-middle-{{ path.Base .Identifier }}"
- href="{{ .URL | absURL }}"
- >
- {{ with .Identifier }}
- {{ $icon := print (partial "function-paths.html").static "/icons/" . ".svg" }}
- {{ safeHTML (readFile $icon) }}
- {{ end }}
- <small>{{ delimit (first 1 (split .Name " ")) " " }}</small>
- </a>
- </icon-button>
- </icon-navigator>
- {{ end }}
+ <column-base position="left"></column-base>
+ <column-base position="middle">
+ <nav>
+ <icon-button>
+ <a id="back" target="_self" href="/">
+ {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/arrow-left.svg")) }}
+ <small>Back</small>
+ </a>
+ </icon-button>
+ <section>
+ <h2>{{ $.Site.Title }} Site Map</h2>
+ <small>Site Map Preview</small>
+ </section>
+ {{ if .Site.Menus.main }}
+ {{ range .Site.Menus.main }}
+ <icon-navigator hidden="">
+ <icon-button>
+ <a
+ id="nav-middle-{{ path.Base .Identifier }}"
+ href="{{ .URL | absURL }}"
+ >
+ {{ with .Identifier }}
+ {{ $icon := print (partial "function-paths.html").static "/icons/" . ".svg" }}
+ {{ safeHTML (readFile $icon) }}
+ {{ end }}
+ <small>{{ delimit (first 1 (split .Name " ")) " " }}</small>
+ </a>
+ </icon-button>
+ </icon-navigator>
{{ end }}
- </nav>
+ {{ end }}
+ </nav>
+ <main>
<navigation-separator><hr hidden=""></hr></navigation-separator>
<section>
<table>
@@ -69,10 +69,9 @@
<xsl:attribute name="href">
<xsl:value-of select="sitemap:loc" />
</xsl:attribute>
- <xsl:attribute name="title">
- Last Modified: <xsl:value-of select="sitemap:lastmod" />
- Frequency: <xsl:value-of select="sitemap:changefreq" />
- Priority: <xsl:value-of select="sitemap:priority" />
+<xsl:attribute name="title">Last Modified: <xsl:value-of select="sitemap:lastmod" />
+Frequency: <xsl:value-of select="sitemap:changefreq" />
+Priority: <xsl:value-of select="sitemap:priority" />
</xsl:attribute>
<xsl:value-of select="sitemap:loc" />
</a>
@@ -83,9 +82,8 @@
</table>
</section>
</main>
- </column-middle>
- <column-right>
- </column-right>
+ </column-base>
+ <column-base position="right"></column-base>
</body>
</html>
</xsl:template>