~comcloudway/pages

1a099fa6c0036f23d922ee196dc01afd21a21702 — Jakob Meier 8 months ago 27797c2
Improved readability and searchability
3 files changed, 9 insertions(+), 5 deletions(-)

M layouts/sitemap/single.html
M layouts/tags/list.html
M static/base.css
M layouts/sitemap/single.html => layouts/sitemap/single.html +4 -4
@@ 8,24 8,24 @@
	<main>
		<h2>Top Level Pages</h2>
		<ul>
			<li>
			<li class="pad01">
				<a href="/">
					Home
				</a>
			</li>
			<li>
			<li class="pad01">
				<a href="/blog/">
					Blog
				</a>
			</li>
			<li>
			<li class="pad01">
				<a href="/keywords/">
					Keywords
				</a>
			</li>
			{{ range where .Site.Pages "Kind" "page" }}
			{{ if ne .Type "sitemap" "blog" }}
			<li>
			<li class="pad01">
				<a href="{{.Permalink}}">
					{{.Title}}
				</a>

M layouts/tags/list.html => layouts/tags/list.html +1 -1
@@ 10,7 10,7 @@
		<h1>{{ .Title }}</h1>
		<main>
			<ul class="nopad">
				{{ range .Pages }}
				{{ range (sort .Pages "LinkTitle") }}
				{{ if .Pages }}
				<li class="pad01">
					<a href="{{ .Page.RelPermalink }}">

M static/base.css => static/base.css +4 -0
@@ 355,6 355,9 @@ a.category > hgroup > p {
	color: var(--color-text);
	opacity: 0.8rem;
}
li.stub a {
	text-decoration: none;
}
li.stub h2 {
	margin: 0;
}


@@ 374,6 377,7 @@ li.stub .tags li {
}
li.stub .tags li a {
	margin: 0;
	text-decoration: underline;
}

footer {