fixing colors and lists

master
Ingolf Wagner 2018-09-28 20:51:59 +02:00
parent 5879059900
commit 426cf1b78f
3 changed files with 11 additions and 12 deletions

View File

@ -17,6 +17,7 @@ pkgs.mkShell {
feh
ion
inotify-tools
pandoc
];

View File

@ -1,12 +1,10 @@
{{ define "main" }}
<p>
<div class="content">
{{ .Content }}
</p>
<p>
<ul>
{{ range .Pages }}
<li> <a href="{{.URL}}"> {{ .Title }} </a> </li>
{{ end }}
</ul>
</p>
<ul>
{{ range .Pages }}
<li> <a href="{{.URL}}"> {{ .Title }} </a> </li>
{{ end }}
</ul>
</div>
{{ end }}

View File

@ -10,6 +10,6 @@
@color-comparison-ok: #E9E653;
@color-comparison-bad: #E96D53;
@color-nav-background: #333;
@color-nav-text: white;
@color-nav-item-border: green;
@color-nav-background: rgb(0, 0, 5);
@color-nav-text: rgb(255, 255, 255);
@color-nav-item-border: rgb(59, 206, 59);