Theme should be useable, but there might be some minor stylistic tweaks
here and there.
This commit is contained in:
Shawn O'Hare 2016-01-14 21:02:57 -08:00
commit 82958f2609
10 changed files with 227 additions and 217 deletions

View file

@ -1,7 +1,5 @@
<div class="header">
<div class="brand">
<h1>{{ .Site.Title}}</h1>
<h2>{{ .Site.Params.subtitle }}</h2>
{{ partial "nav.html" . }}
</div>
</div>
<header class="brand">
<h1>{{ .Site.Title}}</h1>
<h2>{{ .Site.Params.subtitle }}</h2>
{{ partial "nav.html" . }}
</header>

View file

@ -1,5 +1,6 @@
<div class="fineprint">
<ul class="footer-menu">
<footer class="page-footer">
<hr>
<ul class="page-footer-menu">
{{ range .Site.Menus.footer }}
<li><a href="{{.URL}}">{{.Pre }}{{ .Name }}</a></li>
{{ end }}
@ -8,7 +9,7 @@
{{ if .Site.Params.showPoweredBy}}
<p>
Powered by <a href="https://gohugo.io">Hugo</a> and the
<a href="https://github.com/shawnohare/hugo-morphism">Morphism theme</a>.
<a href="https://github.com/shawnohare/hugo-tufte">Tufte theme</a>.
</p>
{{ end }}
@ -23,4 +24,5 @@
{{end}}
</p>
</div>
</div>
</footer>
{{ partial "body.includes.html" . }}

View file

@ -1,5 +1,5 @@
<!-- Load MathJax, if necessary. -->
{{ if eq .Params.math true }}
{{ if or (eq .Params.math "true") (.IsHome) }}
{{ partial "math.html" . }}
{{ end }}

View file

@ -1,5 +1,7 @@
<span class="nav">
<nav class="menu">
<ul>
{{ range .Site.Menus.nav }}
<a href="{{ .URL }}">{{ .Pre }}{{ .Name }}</a>
<li><a href="{{ .URL }}">{{ .Pre }}{{ .Name }}</a></li>
{{ end }}
</span>
</ul>
</nav>