Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlucmongrain committed Aug 30, 2015
0 parents commit 58b4a9f
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
baseurl: http://localhost
title: Hugo bug
metaDataFormat: yaml
43 changes: 43 additions & 0 deletions content/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
date: 2015-08-30
title: Test
layout: default
---

Before Container

{{% container %}}

begin container.

before row

{{% row %}}

row content

before column

{{% column %}}

Content column 1

{{% /column %}}

between columsn

{{% column %}}

Content column 2

{{% /column %}}

after column

{{% /row %}}

After row

{{% /container %}}

after container
5 changes: 5 additions & 0 deletions layouts/_default/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<html>
<body>
{{ .Content }}
</body>
</html>
3 changes: 3 additions & 0 deletions layouts/shortcodes/column.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div class="column">
{{ .Inner }}
</div>
3 changes: 3 additions & 0 deletions layouts/shortcodes/container.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div class="container">
{{ .Inner }}
</div>
3 changes: 3 additions & 0 deletions layouts/shortcodes/row.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div class="row">
{{ .Inner }}
</div>
Empty file added static/.gitkeep
Empty file.

0 comments on commit 58b4a9f

Please sign in to comment.