1
2019-06-29 16:42:07 -04:00

61 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<!-- Banner -->
<section id="banner" class="major" style="height:90vh">
<div class="inner">
<header class="major">
<h1>{{ page.landing-title }}</h1>
</header>
<div class="content">
<p >{{ site.description }}</p>
</div>
</div>
</section>
<!-- Main -->
<div id="main">
<section id="two">
<div class="inner">
<header class="major">
<h2>About Me</h2>
</header>
<p>{{site.about}}</p>
</div>
</section>
<section id="two">
<div class="inner">
<header class="major">
<h3>Blog</h3>
<p>Here are my three most recent posts</p>
</header>
<ul>
{% for post in site.posts limit:3 %}
<li><h3><a href="{{ post.url | relative_url }}" class="link" title="{{ post.date }}">{{ post.title }}</a></h3></li>
{% endfor %}
</ul>
<a href="all_posts.html" class="button next">View All</a>
</div>
</section>
<br><br>
</div>
{% include footer.html %}
</body>
</html>