forked from andrewbanchich/forty-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Forty by HTML5 UP | ||
html5up.net | @ajlkn | ||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) | ||
--> | ||
<html> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
{% include header.html %} | ||
|
||
|
||
<!-- Main --> | ||
<div id="main" class="alt"> | ||
|
||
<!-- One --> | ||
<section id="one"> | ||
<div class="inner"> | ||
{% for post in site.posts %} | ||
<header class="major"> | ||
<h1>{{ post.title }}</h1> | ||
</header> | ||
{% if post.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ post.image }}" alt="" /></span>{% endif %} | ||
<p>{{ post.date }}</p> | ||
<p>{{ post.content }}</p> | ||
{% endfor %} | ||
</div> | ||
</section> | ||
|
||
</div> | ||
|
||
{% include footer.html %} | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: allposts | ||
title: All posts | ||
landing-title: 'All posts' | ||
description: null | ||
image: null | ||
author: null | ||
--- | ||
|
||
<h1>All posts</h1> |