forked from groovemonkey/jekyll-foundation-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (27 loc) · 923 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout: default
title: Welcome!
---
<h1>this is the default index page!</h1>
<!-- breaks, because we don't have any CSS yet -->
<br>
<p>To get started, see the readme.md file. View the source for this page to see how to split up the grid and position elements, or view <a href="http://foundation.zurb.com/docs/grid.php">the foundation documents</a></p>.
<!-- more ugly breaks -->
<br>
<br>
<!-- a new row in our 12-column grid -->
<div class="row">
<!-- one third -->
<div class="four columns">
<p>Some Stuff</p>
</div>
<!-- one third -->
<div class="four columns">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugiat obcaecati eaque soluta rerum tempora molestias neque asperiores sit nulla error accusantium eveniet quia omnis impedit enim aspernatur sint ad earum.</p>
</div>
<!-- one third -->
<div class="four columns">
<p>Even More Important Stuff</p>
</div>
<!-- end row -->
</div>