view blog/index.html @ 100:f638780ffe2f

blog: add github actions post
author Paper <paper@tflc.us>
date Fri, 27 Dec 2024 17:07:10 -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 %}