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

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/components/pagination.pug')
-rw-r--r--docs/src/components/pagination.pug118
1 files changed, 118 insertions, 0 deletions
diff --git a/docs/src/components/pagination.pug b/docs/src/components/pagination.pug
new file mode 100644
index 0000000..c20f8b2
--- /dev/null
+++ b/docs/src/components/pagination.pug
@@ -0,0 +1,118 @@
+extends ../_layout/_docs-layout.pug
+
+block variables
+ - var slug = 'pagination'
+ - var parent = 'components'
+ - var title = 'Pagination - Components - Spectre.css CSS Framework'
+ - var description = 'Spectre.css is a lightweight, responsive and modern CSS framework for faster and extensible development. Spectre provides basic styles for typography and elements, flexbox based responsive layout system, pure CSS components and utilities with best practice coding and consistent design language.'
+
+block docs-content
+ +docs-heading('pagination', 'Pagination')
+ include ../_layout/_ad-g.pug
+
+ .docs-demo.columns
+ .column.col-xs-12
+ ul.pagination
+ li.page-item
+ a(href="#pagination") Prev
+ li.page-item
+ a(href="#pagination") 1
+ li.page-item
+ span ...
+ li.page-item
+ a(href="#pagination") 4
+ li.page-item.active
+ a(href="#pagination") 5
+ li.page-item
+ a(href="#pagination") 6
+ li.page-item
+ span ...
+ li.page-item
+ a(href="#pagination") 9
+ li.page-item
+ a(href="#pagination") Next
+ .column.col-xs-12
+ ul.pagination
+ li.page-item.disabled
+ a(href="#pagination" tabindex="-1") Prev
+ li.page-item.active
+ a(href="#pagination") 1
+ li.page-item
+ a(href="#pagination") 2
+ li.page-item
+ a(href="#pagination") 3
+ li.page-item
+ span ...
+ li.page-item
+ a(href="#pagination") 9
+ li.page-item
+ a(href="#pagination") Next
+
+ p
+ | Add a container element with the #[code pagination] class.
+ | And add child elements with the #[code page-item] class.
+ | The #[code page-item] with the #[code active] class will be highlighted.
+ | You can add the #[code disabled] class to the #[code page-item] to have unclickable page links.
+
+ pre.code(data-lang='HTML')
+ code
+ :highlight(lang="html")
+ <ul class="pagination">
+ <li class="page-item disabled">
+ <a href="#" tabindex="-1">Previous</a>
+ </li>
+ <li class="page-item active">
+ <a href="#">1</a>
+ </li>
+ <li class="page-item">
+ <a href="#">2</a>
+ </li>
+ <li class="page-item">
+ <a href="#">3</a>
+ </li>
+ <li class="page-item">
+ <span>...</span>
+ </li>
+ <li class="page-item">
+ <a href="#">12</a>
+ </li>
+ <li class="page-item">
+ <a href="#">Next</a>
+ </li>
+ </ul>
+
+ .docs-demo.columns
+ .column.col-12
+ ul.pagination
+ li.page-item.page-prev
+ a(href="#pagination")
+ .page-item-subtitle Previous
+ .page-item-title.h5 Getting started
+ li.page-item.page-next
+ a(href="#pagination")
+ .page-item-subtitle Next
+ .page-item-title.h5 Layout
+
+ p You could use previous and next pagination to navigate.
+
+ pre.code(data-lang='HTML')
+ code
+ :highlight(lang="html")
+ <ul class="pagination">
+ <li class="page-item page-prev">
+ <a href="#">
+ <div class="page-item-subtitle">Previous</div>
+ <div class="page-item-title h5">Getting started</div>
+ </a>
+ </li>
+ <li class="page-item page-next">
+ <a href="#">
+ <div class="page-item-subtitle">Next</div>
+ <div class="page-item-title h5">Layout</div>
+ </a>
+ </li>
+ </ul>
+
+ include ../_layout/_ad-c.pug
+
+ include ../_layout/_footer.pug \ No newline at end of file