Fix margins disposition and size of single and home page

This commit is contained in:
nono
2022-08-17 17:17:26 +02:00
parent 65c654fede
commit c5bf0be174
6 changed files with 26 additions and 18 deletions

View File

@@ -5,8 +5,9 @@
<body class="list-body">
{{ partial "nav-bar.html" . }}
<main class="card-container side-gutter">
{{ partial "nav-bar.html" . }}
{{ if or (not (eq .Description "")) (not (eq .Title "")) -}}
{{- end }}
@@ -23,13 +24,15 @@
{{- range $paginator.Pages -}}
{{ .Render "li" }}
{{- end }}
</main>
{{ if or ($paginator.HasPrev) ($paginator.HasNext) -}}
<nav class="pagination-nav side-padding">
<nav class="blog-card blog-card-feed">
{{ if $paginator.HasPrev }}<a href="{{ $paginator.Prev.URL }}" class="pagination-newer pagination-text">&lt; Newer Posts</a>{{ end }}
{{ if $paginator.HasNext }}<a href="{{ $paginator.Next.URL }}" class="pagination-older pagination-text">Older Posts &gt;</a>{{ end }}
</nav>
{{- end }}
</main>
{{ partial "scripts.html" . }}
</body>
</html>

View File

@@ -7,7 +7,7 @@
{{ partial "nav-bar.html" . }}
<main class="content side-text-padding">
<main class="content side-text-padding side-gutter">
<article class="post {{ if ne .Params.dropcap false }}dropcase{{ end }}">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
@@ -29,13 +29,16 @@
{{- end }}
{{ .Content }}
</article>
<nav class="end-nav card-container card">
{{ with .PrevInSection }}
{{ .Render "li-next" }}
{{ end }}
</nav>
{{ partial "footer.html" . }}
</main>
<nav class="end-nav card-container card">
{{ with .PrevInSection }}
{{ .Render "li-next" }}
{{ end }}
</nav>
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}
</body>
</html>