Collin J. Doering
a4b3d3d35e
This removes a special case when generating the pages. Namely having to change the route of "pages/home.markdown" to "pages/index.markdown" before being converted to its final route of "/index.html". Note: Because "pages/home.markdown" was renamed, its template "templates/pages/home.html" has also been renamed to "templates/pages/index.html". Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
28 lines
692 B
HTML
28 lines
692 B
HTML
<div class="container border-box" id="home-page">
|
|
<div class="row">
|
|
<div class="six columns alpha">
|
|
$partial("templates/partials/business-card.html")$
|
|
</div>
|
|
<div class="five columns offset-by-one omega">
|
|
<div id="recent-posts">
|
|
<h1>Recent Posts</h1>
|
|
<hr>
|
|
$partial("templates/partials/recent-posts-list.html")$
|
|
</div>
|
|
<div id="tag-cloud">
|
|
<h1>Tag Cloud</h1>
|
|
<hr>
|
|
$tagCloud$
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="six columns alpha" id="license">
|
|
$license$
|
|
</div>
|
|
<div class="five columns offset-by-one omega" id="tools">
|
|
$tools$
|
|
</div>
|
|
</div>
|
|
</div>
|