-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (30 loc) · 1.13 KB
/
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
---
layout: default
title : "The ultimate jekyll example"
---
<!-- Header -->
<div id="header">
<span class="logo icon fa-rocket"></span>
<h1>Hi. This is a jekyll example page</h1>
<p>Vitae natoque dictum etiam semper magnis enim feugiat amet curabitur tempor orci penatibus.</p>
</div>
<!-- Main -->
<div id="main">
<header class="major container 75%">
<h2>Vitae natoque dictum etiam semper magnis enim feugiat amet curabitur tempor orci penatibus.</h2>
</header>
<a name="news"/>
<div class="box container 75%">
<h1>News</h1>
<ul class="alt" style="text-align:center;">
{% for post in site.posts %}
<li>
<a class="post-link" href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div><!-- /#main -->
{% include footer.html %}