Mercurial > web
view blog/index.html @ 84:5914d06f72b4
css: tweak styles to make things work on older browsers
the other thing was hacky; this is weirder, but makes a tiny
bit more sense
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 05 Jun 2024 21:02:44 -0400 |
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 %}