Compare commits
No commits in common. "df3366a3db410bfb2147cda976ce97b184a062a3" and "8764450423a02b4c13e90333d548fb8651abc8ab" have entirely different histories.
df3366a3db
...
8764450423
3 changed files with 5 additions and 38 deletions
|
@ -19,25 +19,8 @@ html
|
||||||
background-attachment: fixed
|
background-attachment: fixed
|
||||||
body
|
body
|
||||||
margin: 0
|
margin: 0
|
||||||
header
|
|
||||||
& > *
|
|
||||||
margin: 0
|
|
||||||
.site-header
|
|
||||||
display: flex
|
|
||||||
gap: 1em
|
|
||||||
align-items: center
|
|
||||||
color: inherit
|
|
||||||
text-decoration: none
|
|
||||||
h1
|
|
||||||
margin-bottom: -0.375em
|
|
||||||
img
|
|
||||||
height: 5em
|
|
||||||
border-radius: 0.5em
|
|
||||||
border: 2px solid $primary
|
|
||||||
h1, h2, h3, h4, h5, h6
|
h1, h2, h3, h4, h5, h6
|
||||||
font-family: 'Roboto Slab', sans-serif
|
font-family: 'Roboto Slab', sans-serif
|
||||||
&:first-child
|
|
||||||
margin-top: 0
|
|
||||||
.content
|
.content
|
||||||
width: 80ch
|
width: 80ch
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
|
@ -2,19 +2,8 @@
|
||||||
<html>
|
<html>
|
||||||
{{- partial "head.html" . -}}
|
{{- partial "head.html" . -}}
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<a href="/" class="site-header">
|
|
||||||
{{ with .Site.Params.Avatar }}
|
|
||||||
<img src="{{ . }}">
|
|
||||||
{{ end }}
|
|
||||||
<header>
|
|
||||||
<h1>{{ .Site.Title }}</h1>
|
|
||||||
{{ with .Site.Params.Tagline }}
|
|
||||||
<h3>{{ . }}</h3>
|
|
||||||
{{ end }}
|
|
||||||
</header>
|
|
||||||
</a>
|
|
||||||
<br>
|
|
||||||
{{ if .Site.Params.Stork }}
|
{{ if .Site.Params.Stork }}
|
||||||
<div class="stork-search">
|
<div class="stork-search">
|
||||||
<label>
|
<label>
|
||||||
|
|
|
@ -2,17 +2,11 @@
|
||||||
{{ $pagination := .Paginate (where .Site.RegularPages "Params.hidden" "!=" true) }}
|
{{ $pagination := .Paginate (where .Site.RegularPages "Params.hidden" "!=" true) }}
|
||||||
{{ partial "pagination.html" $pagination }}
|
{{ partial "pagination.html" $pagination }}
|
||||||
{{ if eq $pagination.PageNumber 1 }}
|
{{ if eq $pagination.PageNumber 1 }}
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
{{ partial "content.html" .Content }}
|
{{ partial "content.html" .Content }}
|
||||||
{{ end }}
|
|
||||||
{{ $scratch := newScratch }}
|
|
||||||
{{ $scratch.Add "i" 0 }}
|
|
||||||
{{ range $pagination.Pages }}
|
|
||||||
{{ if or ($scratch.Get "i" | ne 0) (eq $pagination.PageNumber 1) }}
|
|
||||||
<br>
|
|
||||||
<hr>
|
<hr>
|
||||||
<br>
|
{{ end }}
|
||||||
{{ end }}
|
{{ range $pagination.Pages }}
|
||||||
{{ $scratch.Set "i" ($scratch.Get "i" | add 1) }}
|
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<h2><a href="{{ .RelPermalink }}">{{ partial "content.html" .Title }}</a></h2>
|
<h2><a href="{{ .RelPermalink }}">{{ partial "content.html" .Title }}</a></h2>
|
||||||
|
@ -21,6 +15,7 @@
|
||||||
<br>
|
<br>
|
||||||
{{ partial "content.html" .Content | truncate 500 }} <a href="{{ .RelPermalink }}">Read more »</a>
|
{{ partial "content.html" .Content | truncate 500 }} <a href="{{ .RelPermalink }}">Read more »</a>
|
||||||
</article>
|
</article>
|
||||||
|
<br>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ partial "pagination.html" $pagination }}
|
{{ partial "pagination.html" $pagination }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue