Putting Jekyll site files under revision control
This commit is contained in:
30
jekyll/pages/travel.html
Normal file
30
jekyll/pages/travel.html
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
layout: page
|
||||
permalink: /travel
|
||||
title: "Travel"
|
||||
---
|
||||
Here, I recall and work through my travel experiences, home and abroad.
|
||||
-----------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="posts">
|
||||
{% for post in site.categories['Travel'] %}
|
||||
<article class="post">
|
||||
<h1>
|
||||
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
||||
</h1>
|
||||
<div>
|
||||
<p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
|
||||
</div>
|
||||
<div class="entry">
|
||||
{{ post.excerpt }}
|
||||
</div>
|
||||
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">
|
||||
Read More
|
||||
</a>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user