Collin J. Doering
06114cfc0d
Skeleton switched from having 16 columns to 12. A few improvements to skeleton also required a little tweaking of the current css as well as a cleanup of templates/default.html. Note: templates/default-nojs.html was not updated though an update will be trivial. This is only relevant if the nojs section of the site is revived. 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>
|