mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 16:42:00 +00:00
20 lines
333 B
Plaintext
20 lines
333 B
Plaintext
h1 Articles
|
|
|
|
p
|
|
a(href="/articles/new") Create new article
|
|
|
|
ul
|
|
- articles.forEach(function(article) {
|
|
li
|
|
a(href="/articles/" + encodeURIComponent(article.title))= article.title
|
|
- });
|
|
|
|
- if (page > 0) {
|
|
a(href="?page=" + (page - 1)) Previous
|
|
|
|
- }
|
|
|
|
- if (! lastPage) {
|
|
a(href="?page=" + (page + 1)) Next
|
|
- }
|