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

32
jekyll/pages/lerler.html Normal file
View File

@@ -0,0 +1,32 @@
---
layout: page
permalink: /lerler
title: "LerLer"
---
This is what you're here for, folks. The Lers. These are things I think about and decide they're worthy enough to document, so my shame will remain long after my pink jelly-pudding gelatinous lump of frig lets them go.
These things are observations, speculations, and things that made sense at some point. Take them as they are: long winded rants about anything.
-----------------------------------------------------------------------------------------
<div class="posts">
{% for post in site.categories['Lerler'] %}
<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>