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

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIhor Sychevskyi <arhell333@gmail.com>2022-09-12 17:03:40 +0300
committerGitHub <noreply@github.com>2022-09-12 17:03:40 +0300
commitc83a0ecd86c77d016b731f46ce7eefcbb1fd0a90 (patch)
treed1b9ddd2c60d13b5f42b15f00f924c0eefbe000d
parentae8b8117ed166679368c04ba7dbcda9f589f1e11 (diff)
fix unclosed tag li (#1236)
-rw-r--r--layouts/partials/pager.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/layouts/partials/pager.html b/layouts/partials/pager.html
index 111bb68..305b345 100644
--- a/layouts/partials/pager.html
+++ b/layouts/partials/pager.html
@@ -2,6 +2,7 @@
<li>
<a {{if .PrevInSection}}href="{{.PrevInSection.RelPermalink}}" aria-label="{{ T "ui_pager_prev" }} - {{.PrevInSection.Title}}" {{end}}class="btn btn-primary{{if not .PrevInSection}} disabled{{end}}"><span class="mr-1">←</span>{{ T "ui_pager_prev" }}</a>
</li>
+ <li>
<a {{if .NextInSection}}href="{{.NextInSection.RelPermalink}}" aria-label="{{ T "ui_pager_next" }} - {{.NextInSection.Title}}" {{end}}class="btn btn-primary{{if not .NextInSection}} disabled{{end}}">{{ T "ui_pager_next" }}<span class="ml-1">→</span></a>
</li>
</ul>