You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
733 B
Plaintext
28 lines
733 B
Plaintext
4 years ago
|
extends frame
|
||
|
|
||
|
block main-content
|
||
|
article
|
||
|
.index
|
||
|
h2= title
|
||
|
p !{content}
|
||
|
section
|
||
|
.index-lists
|
||
|
.recent
|
||
|
span Recent
|
||
|
br
|
||
|
- if(recent_posts)
|
||
|
- var index = 0;
|
||
|
- for ( index; index < recent_posts.length; index++)
|
||
|
a(href="/"+recent_posts[index].path+"/"+recent_posts[index].slug)= recent_posts[index].title
|
||
|
br
|
||
|
- if(featured_posts)
|
||
|
.featured
|
||
|
span Featured
|
||
|
br
|
||
|
- var index = 0;
|
||
|
- for ( index; index < featured_posts.length; index++)
|
||
|
a(href="/"+featured_posts[index].metadata.path+"/"+featured_posts[index].metadata.slug)= featured_posts[index].metadata.title
|
||
|
br
|
||
|
|
||
|
|