comparison blog/index.html @ 78:5fdf5f346b92

*: use jekyll for templates, blogging, etc. I changed the pages to now use templates, so adding new stuff should be much much easier in the future
author Paper <paper@paper.us.eu.org>
date Mon, 20 May 2024 02:49:07 -0400
parents
children 815c0da68384
comparison
equal deleted inserted replaced
77:d9242232f51d 78:5fdf5f346b92
1 ---
2 layout: default
3 title: blog
4 ---
5 {% for post in site.posts %}
6 <div class="content drop-shadow-box">
7 <span><a href="{{ post.url }}" class="prettylink project-title drop-shadow-text">{{ post.title }}</a> <span class="blog-footer" style="float: right;">{{ post.date | date_to_string }}</span></span>
8 <hr class="project-separator">
9 <span class="drop-shadow-text">{{ post.content | strip_html | truncatewords: 50 }}</span>
10 </div>
11 <br>
12 {% endfor %}