-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathblog.html.haml
38 lines (36 loc) · 967 Bytes
/
blog.html.haml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout: base
---
.blog
%section.main-banner
.container
%h1 Blog
%p Updates, discussions and more for LiveOak.
%section.blog
.container
.row
.col-md-8.col-md-offset-2
- posts = page.posts * 1
- leader = posts.shift
.panel
.blog-post
.title
%h1
%a{:href=>leader.url}
= leader.title
.author
= leader.author
.date
= leader.date.strftime("%F")
.body
%p= leader.content
.large-4.columns.blog-post-listings
%h3 Previous Posts
.blog-post-list.row
- for post in posts
.blog-post-item.col-sm-4
%h4
%a{:href=>post.url}
=post.title
%span.date
=post.date.strftime("%F")