little tweaks to tags + comment color
This commit is contained in:
parent
be7363ac2c
commit
506fa714a3
5 changed files with 37 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
||||||
:root {
|
:root {
|
||||||
--chroma-bg: #111;
|
--chroma-bg: #111;
|
||||||
--comment: #9e9e9e;
|
--comment: #7f849c;
|
||||||
--cyan: #8be9fd;
|
--cyan: #8be9fd;
|
||||||
--green: #50fa7b;
|
--green: #50fa7b;
|
||||||
--orange: #ffb86c;
|
--orange: #ffb86c;
|
||||||
|
|
|
@ -3,7 +3,7 @@ languageCode = 'en-us'
|
||||||
title = "wires"
|
title = "wires"
|
||||||
uglyurls = true
|
uglyurls = true
|
||||||
enableGitInfo = true
|
enableGitInfo = true
|
||||||
disableKinds = ['section', 'taxonomy']
|
disableKinds = ['section']
|
||||||
summaryLength = 10
|
summaryLength = 10
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
|
@ -22,6 +22,11 @@ summaryLength = 10
|
||||||
name = "home"
|
name = "home"
|
||||||
url = "/"
|
url = "/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
weight = -5
|
||||||
|
name = "tags"
|
||||||
|
url = "/tags.html"
|
||||||
|
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "rss"
|
name = "rss"
|
||||||
url = "/feed.xml"
|
url = "/feed.xml"
|
||||||
|
|
10
layouts/_default/taxonomy.html
Normal file
10
layouts/_default/taxonomy.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<h2>{{ .Title }}</h2>
|
||||||
|
<ul>
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | lower }}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
10
layouts/_default/term.html
Normal file
10
layouts/_default/term.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<h2>{{ .Title }}</h2>
|
||||||
|
<ul>
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
|
@ -1,14 +1,13 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }} {{ .Content }} {{ with .Site.RegularPages }}
|
||||||
{{ .Content }}
|
|
||||||
{{ with .Site.RegularPages }}
|
|
||||||
<h2>Posts</h2>
|
<h2>Posts</h2>
|
||||||
<ul>
|
<ul>
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
||||||
{{ partial "tags.html" . }}
|
<time datetime="{{ .Lastmod }}">
|
||||||
|
{{ .Lastmod.Format "January 2, 2006" }}
|
||||||
|
</time>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
{{ end }}
|
{{ end }} {{ end }}
|
||||||
{{ end }}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue