Mercurial > piecrust2
annotate tests/bakes/test_pagination.bake @ 357:3a496ffbb898 2.0.0a7
docs: Add documentation for importing content from other engines.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 20 Apr 2015 22:35:10 -0700 |
parents | 498a917cd2d4 |
children | 4b1019bb2533 |
rev | line source |
---|---|
352
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 --- |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 config: |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 site: |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 posts_per_page: 3 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
5 pagination_suffix: /page%num% |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
6 in: |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
7 posts/2015-03-01_post01.md: "---\ntitle: Post 01\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
8 posts/2015-03-02_post02.md: "---\ntitle: Post 02\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
9 posts/2015-03-03_post03.md: "---\ntitle: Post 03\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
10 posts/2015-03-04_post04.md: "---\ntitle: Post 04\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
11 posts/2015-03-05_post05.md: "---\ntitle: Post 05\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
12 posts/2015-03-06_post06.md: "---\ntitle: Post 06\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
13 posts/2015-03-07_post07.md: "---\ntitle: Post 07\n---\n" |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
14 pages/_index.md: '' |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
15 pages/foo.md: | |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
16 {%- for p in pagination.items -%} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
17 {{p.url}} {{p.title}} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
18 {% endfor -%} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
19 {{pagination.prev_page}} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
20 {{pagination.this_page}} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
21 {{pagination.next_page}} |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
22 outfiles: |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
23 foo.html: | |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
24 /2015/03/07/post07.html Post 07 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
25 /2015/03/06/post06.html Post 06 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
26 /2015/03/05/post05.html Post 05 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
27 None |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
28 /foo.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
29 /foo/page2.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
30 foo/page2.html: | |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
31 /2015/03/04/post04.html Post 04 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
32 /2015/03/03/post03.html Post 03 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
33 /2015/03/02/post02.html Post 02 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
34 /foo.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
35 /foo/page2.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
36 /foo/page3.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
37 foo/page3.html: | |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
38 /2015/03/01/post01.html Post 01 |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
39 /foo/page2.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
40 /foo/page3.html |
498a917cd2d4
pagination: Make pagination use routes to generate proper URLs.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
41 None |