mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-17 13:25:57 -06:00
parent
5613f8e6f1
commit
c03c44ff2d
@ -96,3 +96,35 @@ ul.breadcrumb li+li:before {
|
||||
ul.breadcrumb li.active a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/* Pagination */
|
||||
.pagination {
|
||||
list-style: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-item {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
padding: 8px 16px;
|
||||
border-radius: 5px;
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
.page-item.active .page-link {
|
||||
background-color: #163b64;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.page-item.active .page-link:hover {
|
||||
background-color: #2b72c0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.page-link:hover {
|
||||
background-color: #444;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -8,7 +8,7 @@
|
||||
<h1>{{ .Title | markdownify }}</h1>
|
||||
{{ end }}
|
||||
|
||||
{{ range .Pages }}
|
||||
{{ range .Paginator.Pages }}
|
||||
<div class="post">
|
||||
<h2 class="post-title">
|
||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||
@ -53,4 +53,8 @@
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
<div class="pagination">
|
||||
{{ template "_internal/pagination.html" . }}
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
|
Loading…
Reference in New Issue
Block a user