-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to wide layout and bump versions (#42)
* Switch to wide layout * Bump theme versions * Bump hugo version
- Loading branch information
Showing
15 changed files
with
47 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
HUGO_VERSION=0.124.1 | ||
HUGO_VERSION=0.127.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
--- | ||
title: People | ||
layout: list | ||
cascade: | ||
params: | ||
type: wide | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Kişiler | ||
layout: list | ||
cascade: | ||
params: | ||
type: wide | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github.com/gethinode/hinode v0.23.20 h1:dsBDyCnPhI3lox4sM5JEUMil2DByDWT/pcP1Ii6Eges= | ||
github.com/gethinode/hinode v0.23.20/go.mod h1:ZeVZDRjvPMosmTVG3RWBvaHvWaNbjYf7/3fF/LxXOVw= | ||
github.com/gethinode/hinode v0.24.3 h1:PaBOHpya4Wv1qC0nF+T2BeyAeQ7rew6wgGoS7kMAxMc= | ||
github.com/gethinode/hinode v0.24.3/go.mod h1:fKFWr9VndV/rXHmvKkdq1cbc5ESafSbgcWlaBXD+Hds= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{{ define "main" -}} | ||
{{- $breakpoint := $.Scratch.Get "breakpoint" -}} | ||
{{ $toc := .Render "single/panel-toc" }} | ||
|
||
<div class="container-xxl flex-fill p-4 px-xxl-0"> | ||
<div class="row row-cols-1 row-cols-{{ $breakpoint.current }}-2"> | ||
<div class="col col-{{ $breakpoint.prev }}-12 col-{{ $breakpoint.current }}-6"> | ||
{{ .Render "single/main" }} | ||
</div> | ||
<div class="col col-{{ $breakpoint.current }}-3 offset-{{ $breakpoint.current }}-1 d-none d-{{ $breakpoint.current }}-block"> | ||
{{ $toc | safeHTML }} | ||
</div> | ||
</div> | ||
</div> | ||
{{ end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{{ define "main" -}} | ||
{{- $breakpoint := $.Scratch.Get "breakpoint" -}} | ||
{{ $toc := .Render "single/panel-toc" }} | ||
|
||
<div class="container-xxl flex-fill p-4 px-xxl-0"> | ||
<div class="row row-cols-1 row-cols-{{ $breakpoint.current }}-2"> | ||
<div class="col col-{{ $breakpoint.prev }}-12 col-{{ $breakpoint.current }}-9"> | ||
{{ .Render "single/main" }} | ||
</div> | ||
<div class="col col-{{ $breakpoint.current }}-3 d-none d-{{ $breakpoint.current }}-block"> | ||
{{ $toc | safeHTML }} | ||
</div> | ||
</div> | ||
</div> | ||
{{ end -}} |