forked from rhazdon/hugo-theme-hello-friend-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Djordje Atlialp
committed
Nov 14, 2019
1 parent
276bb50
commit 0a613d3
Showing
5 changed files
with
30 additions
and
51 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
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,10 +1,10 @@ | ||
{{- with .Site.Params.favicon.color }} | ||
<link rel="apple-touch-icon" sizes="180x180" href="{{"apple-touch-icon.png" | relURL}}"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="{{"favicon-32x32.png" | relURL}}"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="{{"favicon-16x16.png" | relURL}}"> | ||
<link rel="manifest" href="{{"site.webmanifest" | relURL}}"> | ||
<link rel="mask-icon" href="{{"safari-pinned-tab.svg" | relURL}}" color="{{.mask}}"> | ||
<link rel="shortcut icon" href="{{"favicon.ico" | relURL}}"> | ||
<meta name="msapplication-TileColor" content="{{.msapplication}}"> | ||
<meta name="theme-color" content="{{.theme}}"> | ||
{{ end }} | ||
<link rel="apple-touch-icon" sizes="180x180" href="{{"apple-touch-icon.png" | relURL}}"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="{{"favicon-32x32.png" | relURL}}"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="{{"favicon-16x16.png" | relURL}}"> | ||
<link rel="manifest" href="{{"site.webmanifest" | relURL}}"> | ||
<link rel="mask-icon" href="{{"safari-pinned-tab.svg" | relURL}}" color="{{.mask}}"> | ||
<link rel="shortcut icon" href="{{"favicon.ico" | relURL}}"> | ||
<meta name="msapplication-TileColor" content="{{.msapplication}}"> | ||
<meta name="theme-color" content="{{.theme}}"> | ||
{{ 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
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,20 +1,20 @@ | ||
<div class="pagination"> | ||
<div class="pagination__buttons"> | ||
{{ if .Paginator.HasPrev }} | ||
<span class="button previous"> | ||
<a href="{{ .Paginator.Prev.URL }}"> | ||
<span class="button__icon">←</span> | ||
<span class="button__text">Newer posts</span> | ||
</a> | ||
</span> | ||
{{ end }} | ||
{{ if .Paginator.HasNext }} | ||
<span class="button next"> | ||
<a href="{{ .Paginator.Next.URL }}"> | ||
<span class="button__text">Older posts</span> | ||
<span class="button__icon">→</span> | ||
</a> | ||
</span> | ||
{{ end }} | ||
</div> | ||
<div class="pagination__buttons"> | ||
{{ if .Paginator.HasPrev }} | ||
<span class="button previous"> | ||
<a href="{{ .Paginator.Prev.URL }}"> | ||
<span class="button__icon">←</span> | ||
<span class="button__text">Newer posts</span> | ||
</a> | ||
</span> | ||
{{ end }} | ||
{{ if .Paginator.HasNext }} | ||
<span class="button next"> | ||
<a href="{{ .Paginator.Next.URL }}"> | ||
<span class="button__text">Older posts</span> | ||
<span class="button__icon">→</span> | ||
</a> | ||
</span> | ||
{{ end }} | ||
</div> | ||
</div> |