forked from lirios/lirios.github.io
-
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.
Almost done, needs only to add the time stamp and author name. Apparently it can't be added to the actions box. Issue: lirios#13
- Loading branch information
Showing
4 changed files
with
44 additions
and
2 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,15 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<article class="page"> | ||
<header class="primary"> | ||
<h1 class="primary-text">{{ page.title | escape }}</h1> | ||
</header> | ||
|
||
<div class="row"> | ||
<div class="col s12 m6 offset-m3"> | ||
{{ content | toc }} | ||
</div> | ||
</div> | ||
</article> |
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
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,25 @@ | ||
--- | ||
layout: centered | ||
title: Blog | ||
permalink: /blog/ | ||
style: blue.css | ||
navitem: nav-blog | ||
--- | ||
|
||
{% for post in site.posts %} | ||
<div class="card"> | ||
{% if post.image != null %} | ||
<div class="card-image"> | ||
<img src="{{ site.baseurl }}{{ post.image }}"> | ||
<span class="card-title">{{ post.title }}</span> | ||
</div> | ||
{% endif %} | ||
<div class="card-content"> | ||
{% if post.image == null %}<span class="card-title">{{ post.title }}</span>{% endif %} | ||
<p>{{ post.excerpt }}</p> | ||
</div> | ||
<div class="card-action"> | ||
<a href="{{ site.baseurl }}{{ post.url }}">Read More</a> | ||
</div> | ||
</div> | ||
{% endfor %} |
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