diff --git a/assets/scss/style.scss b/assets/scss/style.scss index ea7f9ec..7d85264 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -144,3 +144,26 @@ color: #787878; } } + +.pagination { + display: flex; /* Enable flexbox layout */ + list-style: none; /* Remove default list styling */ + padding: 0; /* Remove default padding */ + margin: 0; /* Adjust margin as needed */ + justify-content: center; /* Center the pagination items */ + font-family: Inter; +} + +.pagination .page-item { + margin: 0; /* Adjust margin between items as needed */ +} + +.pagination .page-link { + display: block; /* Make the link fill the li element */ + padding: 5px 10px; /* Adjust padding as needed */ + margin: 0 2px; /* Space out the page links */ +} + +#site-footer { + width: 400px; +} diff --git a/config.toml b/config.toml index 36815f3..b07b4cb 100644 --- a/config.toml +++ b/config.toml @@ -9,6 +9,7 @@ pygmentsUseClasses = true rssLimit = 10 # Maximum number of items in the RSS feed. enableEmoji = true +paginate = 5 [languages] [languages.tr] @@ -52,7 +53,7 @@ enableEmoji = true # Add custom css # customCSS = ["css/foo.css", "css/bar.css"] - [[params.author]] + [params.author] name = "Furkan Erdem" # Social Icons diff --git a/content/posts/goisforlovers2.md b/content/posts/goisforlovers2.md index 6f7a507..7425e85 100644 --- a/content/posts/goisforlovers2.md +++ b/content/posts/goisforlovers2.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2015-04-02" toc = true +++ diff --git a/content/posts/goisforlovers3.md b/content/posts/goisforlovers3.md index b410100..a8a3c45 100644 --- a/content/posts/goisforlovers3.md +++ b/content/posts/goisforlovers3.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2016-04-02" toc = true +++ diff --git a/content/posts/goisforlovers4.md b/content/posts/goisforlovers4.md index f51b75c..3406844 100644 --- a/content/posts/goisforlovers4.md +++ b/content/posts/goisforlovers4.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2017-04-02" toc = true +++ diff --git a/content/posts/goisforlovers5.md b/content/posts/goisforlovers5.md index 37402bc..e08187a 100644 --- a/content/posts/goisforlovers5.md +++ b/content/posts/goisforlovers5.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2018-04-02" toc = true +++ diff --git a/content/posts/goisforlovers6.md b/content/posts/goisforlovers6.md index c4dbbd6..0984d17 100644 --- a/content/posts/goisforlovers6.md +++ b/content/posts/goisforlovers6.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2019-04-02" toc = true +++ diff --git a/content/posts/goisforlovers7.md b/content/posts/goisforlovers7.md index 416543c..0e1ecdf 100644 --- a/content/posts/goisforlovers7.md +++ b/content/posts/goisforlovers7.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2020-04-02" toc = true +++ diff --git a/content/posts/goisforlovers8.md b/content/posts/goisforlovers8.md index b5a05d9..e4f3dbb 100644 --- a/content/posts/goisforlovers8.md +++ b/content/posts/goisforlovers8.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2021-04-02" toc = true +++ diff --git a/content/posts/goisforlovers9.md b/content/posts/goisforlovers9.md index 4007049..4248e30 100644 --- a/content/posts/goisforlovers9.md +++ b/content/posts/goisforlovers9.md @@ -7,7 +7,7 @@ tags = [ "themes", "development", ] -date = "2014-04-02" +date = "2022-04-02" toc = true +++ diff --git a/i18n/en.yaml b/i18n/en.yaml index 4a2a5b2..581d140 100644 --- a/i18n/en.yaml +++ b/i18n/en.yaml @@ -10,3 +10,5 @@ translation: "Running" - id: backTitle translation: "🞀 Back To Home" +- id: tags + translation: "Tags" diff --git a/i18n/tr.yaml b/i18n/tr.yaml index db6bef5..c88f4dc 100644 --- a/i18n/tr.yaml +++ b/i18n/tr.yaml @@ -2,3 +2,5 @@ translation: "🞀 Anasayfaya Dön" - id: posts translation: "Yazılar" +- id: tags + translation: "Etiketler" diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 104c282..d3cd320 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,5 +1,5 @@ {{ define "header" }} -{{ partialCached "header.html" . }} +{{ partial "header.html" . }} {{ end }} {{ define "main" }} @@ -9,19 +9,18 @@ {{ .Content }} {{- end }} - {{- range .Data.Pages.GroupByDate "2006" }} + {{ range (.Paginate .Pages.ByPublishDate ).Pages }}
- {{- range .Pages }}

{{.Title}}

- {{- end }}
- {{- end }} + {{ end }} + {{ template "_internal/pagination.html" . }} {{ end }} diff --git a/layouts/index.html b/layouts/index.html index 5903e19..22fa2f6 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -12,14 +12,13 @@ {{- if (or .Site.Params.images .Site.Params.bgImg) }}
{{- end }} -

{{ .Site.Title }}

- {{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 125b2f6..c1d3a22 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -7,6 +7,6 @@ {{ end }}

- © {{ now.Format "2006" }} {{ .Site.Author.name }}{{ .Site.Params.footerCopyright | safeHTML }} + © {{ now.Format "2006" }} {{ .Site.Params.author.name }}{{ .Site.Params.footerCopyright | safeHTML }}

diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content index 32ec572..d38a51b 100644 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content +++ b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content @@ -1 +1 @@ -#page{height:100vh;margin:0}#spotlight{display:flex;min-height:100vh;flex-direction:column;align-items:start;justify-content:space-between;max-width:400px;margin:auto;font-size:1.5rem}@media(max-width:448px){#spotlight{margin-left:24px}}#home-center{display:flex;flex-direction:column;flex-grow:1;align-items:flex-start;margin-top:10vh}#home-title{color:#202020;font-family:Inter;font-size:48px;font-style:normal;font-weight:500;line-height:normal}#home-nav{display:flex;flex-direction:column}#home-nav a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}.post-item .post-day,.post-item a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}#site-footer,#home-footer{width:100%}#site-footer p,#home-footer p{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center}#site-footer a,#home-footer a{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center;text-decoration:none}#site-footer a:hover,#home-footer a:hover{text-decoration:underline}.posts-group{width:400px}.back-title{font-family:Inter;font-size:20px;font-style:normal;font-weight:400}.back-title a{text-decoration:none;color:#252525}.back-title a:hover{text-decoration:underline;color:#151515}.post-item{display:flex;justify-content:space-between;align-items:center;width:100%}.post-item a{font-size:30px}.post-item .post-day{font-size:30px;text-decoration:none;color:#787878} \ No newline at end of file +#page{height:100vh;margin:0}#spotlight{display:flex;min-height:100vh;flex-direction:column;align-items:start;justify-content:space-between;max-width:400px;margin:auto;font-size:1.5rem}@media(max-width:448px){#spotlight{margin-left:24px}}#home-center{display:flex;flex-direction:column;flex-grow:1;align-items:flex-start;margin-top:10vh}#home-title{color:#202020;font-family:Inter;font-size:48px;font-style:normal;font-weight:500;line-height:normal}#home-nav{display:flex;flex-direction:column}#home-nav a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}.post-item .post-day,.post-item a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}#site-footer,#home-footer{width:100%}#site-footer p,#home-footer p{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center}#site-footer a,#home-footer a{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center;text-decoration:none}#site-footer a:hover,#home-footer a:hover{text-decoration:underline}.posts-group{width:400px}.back-title{font-family:Inter;font-size:20px;font-style:normal;font-weight:400}.back-title a{text-decoration:none;color:#252525}.back-title a:hover{text-decoration:underline;color:#151515}.post-item{display:flex;justify-content:space-between;align-items:center;width:100%}.post-item a{font-size:30px}.post-item .post-day{font-size:30px;text-decoration:none;color:#787878}.pagination{display:flex;list-style:none;padding:0;margin:0;justify-content:center;font-family:Inter}.pagination .page-item{margin:0}.pagination .page-link{display:block;padding:5px 10px;margin:0 2px}#site-footer{width:400px} \ No newline at end of file diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json index bb60732..1df0d57 100644 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json +++ b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json @@ -1 +1 @@ -{"Target":"css/style.min.910364c57b3e8dcac2b40ba671bb4535eb005c27b07e67a0755ebc7b7c4d4b46.css","MediaType":"text/css","Data":{"Integrity":"sha256-kQNkxXs+jcrCtAumcbtFNesAXCewfmegdV68e3xNS0Y="}} \ No newline at end of file +{"Target":"css/style.min.dd07bb0d6a75bc893e253d7929db53d7b6973c27c5fa5672c5b491e607c2bd3c.css","MediaType":"text/css","Data":{"Integrity":"sha256-3Qe7DWp1vIk+JT15KdtT17aXPCfF+lZyxbSR5gfCvTw="}} \ No newline at end of file