Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2018-11-04 14:11:56 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2018-11-04 14:11:56 +0300
commit0128143d9e7fb0ae11d55d89c21ccc7114b21916 (patch)
treeab1b0ec915d3058176d958d29508548bb385ba37 /layouts/about
parenta4040547736578f6baf05b41b6a5ecd52ff2f77b (diff)
Remove deprecated .Next and .Prev calls
Page's .Next and .Prev are deprecated and will be removed in a future release. Replaced these with .NextPage and .PrevPage. Also removed the links to the previous and next page from the about template. This assumes there is only ever one about page.
Diffstat (limited to 'layouts/about')
-rw-r--r--layouts/about/list.html13
1 files changed, 1 insertions, 12 deletions
diff --git a/layouts/about/list.html b/layouts/about/list.html
index 3458ca4..30dd850 100644
--- a/layouts/about/list.html
+++ b/layouts/about/list.html
@@ -9,17 +9,6 @@
{{ .Content }}
</div>
-
- <div class="pagination">
- {{ if .Next }}
- <a href="{{ .Next.URL }}" class="left arrow">&#8592;</a>
- {{ end }}
- {{ if .Prev }}
- <a href="{{ .Prev.URL }}" class="right arrow">&#8594;</a>
- {{ end }}
-
- <a href="#" class="top">Top</a>
- </div>
</main>
-{{ end }} \ No newline at end of file
+{{ end }}