Initial import
This commit is contained in:
commit
4cc4e303ab
44 changed files with 691 additions and 0 deletions
5
example/layouts/base.html.haml
Normal file
5
example/layouts/base.html.haml
Normal file
|
@ -0,0 +1,5 @@
|
|||
!!!
|
||||
%html
|
||||
%head
|
||||
%body
|
||||
#main= block(:body)
|
5
example/layouts/post.html.haml
Normal file
5
example/layouts/post.html.haml
Normal file
|
@ -0,0 +1,5 @@
|
|||
- extends "base.html"
|
||||
|
||||
- block(:body) do
|
||||
%h1 My Coooooool Bloogiiiiseeeeek!
|
||||
= item.content
|
6
example/layouts/tag.html.haml
Normal file
6
example/layouts/tag.html.haml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- extends "base.html"
|
||||
|
||||
- block(:body) do
|
||||
%h1 My Coooooool Bloogiiiiseeeeek!
|
||||
- item.content.each do |post|
|
||||
= post.metadata[:title]
|
Loading…
Add table
Add a link
Reference in a new issue