view blog/index.html @ 101:d9223d9ab9ba

blog: this post feels incomplete without a conclusion-ish
author Paper <paper@tflc.us>
date Fri, 27 Dec 2024 20:27:24 -0500
parents eb3bbc61bc17
children
line wrap: on
line source

---
layout: default
title: blog
---
{% for post in site.posts %}
	<div class="content drop-shadow-box">
		<div class="project-title-container">
			<a href="{{ post.url }}" class="prettylink project-title drop-shadow-text">{{ post.title }}</a>
			<span class="project-quip drop-shadow-text"><i>{{ post.date | date_to_string }}</i></span>
		</div>
		<hr class="project-separator">
		<span class="drop-shadow-text">{{ post.content | strip_html | truncatewords: 50 }}</span>
	</div>
	<br>
{% endfor %}