Compare commits

..

No commits in common. "7cff045cb3a5a0036afa7880e7dcca035c72ecb5" and "fb40c8a4c338409fa59a4ebb21fe4c92e4624eed" have entirely different histories.

3 changed files with 20 additions and 21 deletions

View File

@ -314,11 +314,14 @@
margin: 16px 0; margin: 16px 0;
} }
.header h1 {
font-size: 1.5em;
font-weight: bold;
}
.header a, .header a,
.section-header a { .section-header a {
color: inherit; color: inherit;
font-size: 1.5em;
font-weight: bold;
} }
.section-header-link svg { .section-header-link svg {

View File

@ -1,7 +1,9 @@
<header class="header"> <header class="header">
<a href="{{ .Site.Home.Permalink | absLangURL }}"> <h1>
{{ .Site.Title | markdownify }} <a href="{{ .Site.Home.Permalink | absLangURL }}">
</a> {{ .Site.Title | markdownify }}
</a>
</h1>
</header> </header>
<div class="topbar"> <div class="topbar">

View File

@ -1,21 +1,15 @@
{{ define "main" }} {{ define "main" }}
<div class="post-title"> <h1>
<h1> {{ if eq .Data.Singular "tag" }}
{{ if eq .Data.Singular "tag" }} {{ partial "icon.html" "tag" }}
{{ partial "icon.html" "tag" }} {{ else if eq .Data.Singular "category" }}
{{ else if eq .Data.Singular "category" }} {{ partial "icon.html" "folder" }}
{{ partial "icon.html" "folder" }} {{ else }}
{{ else }} {{ partial "icon.html" "filter" }}
{{ partial "icon.html" "filter" }} {{ end }}
{{ end }}
{{ .Title | markdownify }} {{ .Title | markdownify }}
</h1> </h1>
</div>
{{ with .Content }}
{{ . }}
{{ end }}
<div class="taxonomy-list"> <div class="taxonomy-list">
{{ with .Data.Terms.Alphabetical }} {{ with .Data.Terms.Alphabetical }}