Putting Jekyll site files under revision control

This commit is contained in:
2021-10-28 23:51:09 +03:00
commit ffa09834f7
347 changed files with 5650 additions and 0 deletions

30
jekyll/pages/travel.html Normal file
View 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>