+24
-13
@@ -87,13 +87,6 @@ ul.pagination {
|
|||||||
a .book-icon {
|
a .book-icon {
|
||||||
height: 1em;
|
height: 1em;
|
||||||
width: 1em;
|
width: 1em;
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
margin-inline-end: $padding-8;
|
|
||||||
}
|
|
||||||
&:last-child {
|
|
||||||
margin-inline-start: $padding-8;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-brand {
|
.book-brand {
|
||||||
@@ -189,9 +182,19 @@ body[dir="rtl"] .book-menu {
|
|||||||
margin-inline-end: .5em;
|
margin-inline-end: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-post-content > :first-child {
|
.book-post-content {
|
||||||
margin-top: $padding-16;
|
margin-top: $padding-16;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.book-post-thumbnail {
|
||||||
|
flex: 0 0 34%;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
aspect-ratio: 4 / 3;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-header {
|
.book-header {
|
||||||
@@ -314,6 +317,10 @@ body[dir="rtl"] .book-menu {
|
|||||||
a {
|
a {
|
||||||
margin: $padding-8 0;
|
margin: $padding-8 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.flex {
|
||||||
|
gap: $padding-8;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.book-comments {
|
.book-comments {
|
||||||
@@ -341,11 +348,6 @@ body[dir="rtl"] .book-menu {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $mobile-breakpoint) {
|
@media screen and (max-width: $mobile-breakpoint) {
|
||||||
#menu-control,
|
|
||||||
#toc-control {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.book-menu {
|
.book-menu {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
margin-inline-start: -$menu-width;
|
margin-inline-start: -$menu-width;
|
||||||
@@ -360,6 +362,15 @@ body[dir="rtl"] .book-menu {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.book-post-container {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu-control,
|
||||||
|
#toc-control {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
#menu-control:focus ~ main label[for="menu-control"] {
|
#menu-control:focus ~ main label[for="menu-control"] {
|
||||||
@include outline;
|
@include outline;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -210,7 +210,7 @@
|
|||||||
background: var(--gray-100);
|
background: var(--gray-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
> img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
aspect-ratio: 4 / 3;
|
aspect-ratio: 4 / 3;
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
&.gap {
|
||||||
|
gap: $padding-16;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-auto {
|
.flex-auto {
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="680.764" height="528.354" viewBox="0 0 180.119 139.794"><g transform="translate(-13.59 -66.639)" paint-order="fill markers stroke"><path fill="#d0d0d0" d="M13.591 66.639H193.71v139.794H13.591z"/><path d="m118.507 133.514-34.249 34.249-15.968-15.968-41.938 41.937H178.726z" opacity=".675" fill="#fff"/><circle cx="58.217" cy="108.555" r="11.773" opacity=".675" fill="#fff"/><path fill="none" d="M26.111 77.634h152.614v116.099H26.111z"/></g></svg>
|
||||||
|
<!-- By Flanoz - Own work, CC0, https://commons.wikimedia.org/w/index.php?curid=94184060 -->
|
||||||
|
After Width: | Height: | Size: 585 B |
@@ -0,0 +1,28 @@
|
|||||||
|
{{- if .Paginator -}}
|
||||||
|
<div class="flex flex-wrap justify-between">
|
||||||
|
<span>
|
||||||
|
{{- with .Paginator.Prev }}
|
||||||
|
<a href="{{ .URL }}" class="flex align-center">
|
||||||
|
<img src="{{ "svg/backward.svg" | relURL }}" class="book-icon" alt="Previous" />
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ if gt (len .Paginator.Pagers) 1 }}
|
||||||
|
<span class="flex gap">
|
||||||
|
{{- $currentPageNumber := .Paginator.PageNumber -}}
|
||||||
|
{{- range $pageIndex := (slice -2 -1 0 1 2) -}}
|
||||||
|
{{- with index $.Paginator.Pagers (add $currentPageNumber $pageIndex -1) -}}
|
||||||
|
<a {{if ne $currentPageNumber .PageNumber }}href="{{ .URL }}"{{end}}>{{ .PageNumber }}</a>
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
<span>
|
||||||
|
{{- with .Paginator.Next }}
|
||||||
|
<a href="{{ .URL }}" class="flex align-center">
|
||||||
|
<img src="{{ "svg/forward.svg" | relURL }}" class="book-icon" alt="Next" />
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{{- end -}}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<div class="flex flex-wrap justify-between">
|
||||||
|
<span>
|
||||||
|
{{ with .NextInSection }}
|
||||||
|
<a href="{{ .RelPermalink }}" class="flex align-center">
|
||||||
|
<img src="{{ "svg/backward.svg" | relURL }}" class="book-icon" alt="Previous" title="{{ partial "docs/title" . }}" />
|
||||||
|
<span>{{ partial "docs/title" . }}</span>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
<span>
|
||||||
|
{{ with .PrevInSection }}
|
||||||
|
<a href="{{ .RelPermalink }}" class="flex align-center">
|
||||||
|
<span>{{ partial "docs/title" . }}</span>
|
||||||
|
<img src="{{ "svg/forward.svg" | relURL }}" class="book-icon" alt="Next" title="{{ partial "docs/title" . }}" />
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
+19
-7
@@ -1,17 +1,25 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ range sort .Paginator.Pages }}
|
{{ range sort .Paginator.Pages }}
|
||||||
<article class="markdown book-post">
|
<article class="book-post markdown">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
|
<a href="{{ .RelPermalink }}">{{ partial "docs/title" . }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
{{ partial "docs/post-meta" . }}
|
<div class="book-post-container flex gap">
|
||||||
<div class="book-post-content">
|
<div>
|
||||||
{{- .Summary -}}
|
{{ partial "docs/post-meta" . }}
|
||||||
|
<div class="book-post-content markdown-inner">
|
||||||
|
{{- .Summary | truncate 256 -}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{- $thumbnail := default "thumbnail.*" .Params.BookPostThumbnail -}}
|
||||||
|
{{- with or (.Resources.GetMatch $thumbnail) (resources.GetMatch $thumbnail) -}}
|
||||||
|
<div class="book-post-thumbnail">
|
||||||
|
<img src="{{ .RelPermalink }}" />
|
||||||
|
</div>
|
||||||
|
{{- end -}}
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ template "_internal/pagination.html" . }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ define "toc-container" }}
|
{{ define "toc-container" }}
|
||||||
@@ -25,3 +33,7 @@
|
|||||||
{{ define "toc" }}
|
{{ define "toc" }}
|
||||||
{{ partial "docs/taxonomy" . }}
|
{{ partial "docs/taxonomy" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "footer" }}
|
||||||
|
{{ partial "docs/pagination.html" . }}
|
||||||
|
{{ end }}
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<article class="markdown book-post">
|
<article class="markdown book-post">
|
||||||
<h1>
|
<h1>
|
||||||
{{ partial "docs/title.html" . }}
|
{{ partial "docs/title" . }}
|
||||||
</h1>
|
</h1>
|
||||||
{{ partial "docs/post-meta" . }}
|
{{ partial "docs/post-meta" . }}
|
||||||
<div class="book-post-content">
|
<div class="book-post-content markdown-inner">
|
||||||
{{- .Content -}}
|
{{- .Content -}}
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
@@ -13,3 +13,7 @@
|
|||||||
{{ define "toc" }}
|
{{ define "toc" }}
|
||||||
{{ partial "docs/toc" . }}
|
{{ partial "docs/toc" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ define "footer" }}
|
||||||
|
{{ partial "docs/post-prev-next" . }}
|
||||||
|
{{ end }}
|
||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
{{ range sort .Paginator.Pages }}
|
{{ range sort .Paginator.Pages }}
|
||||||
<article class="markdown book-post">
|
<article class="markdown book-post">
|
||||||
<h2>
|
<h2>
|
||||||
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
|
<a href="{{ .RelPermalink }}">{{ partial "docs/title" . }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
{{ partial "docs/post-meta" . }}
|
{{ partial "docs/post-meta" . }}
|
||||||
<div class="book-post-content">
|
<div class="book-post-content">
|
||||||
|
|||||||
Reference in New Issue
Block a user