Skip to content

Commit 94fc45f

Browse files
committed
Adds tiles-shaping HBS files
1 parent f92f008 commit 94fc45f

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

src/layouts/tiles.hbs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
{{> head defaultPageTitle='Untitled'}}
5+
</head>
6+
<body class="article">
7+
{{> header}}
8+
{{> tiles-body}}
9+
{{> footer}}
10+
</body>
11+
</html>

src/partials/tiles-body.hbs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<div class="body">
2+
{{> nav}}
3+
{{> tiles-main}}
4+
</div>

src/partials/tiles-main.hbs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<main>
2+
{{> toolbar}}
3+
{{> tiles-page}}
4+
</main>

src/partials/tiles-page.hbs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<article class="doc tiles-page"><a name="section-top"></a>
2+
{{#if page.title}}
3+
<h1 class="page">{{{page.title}}}</h1>
4+
{{/if}}
5+
{{{page.contents}}}
6+
</article>

0 commit comments

Comments
 (0)