Mercurial > web
comparison blog/index.html @ 81:eb3bbc61bc17
Use flexbox for lots more things
this should make stuff actually work on safari. HOPEFULLY.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 20 May 2024 04:00:58 -0400 |
parents | 815c0da68384 |
children |
comparison
equal
deleted
inserted
replaced
80:ec24b7d30ce9 | 81:eb3bbc61bc17 |
---|---|
2 layout: default | 2 layout: default |
3 title: blog | 3 title: blog |
4 --- | 4 --- |
5 {% for post in site.posts %} | 5 {% for post in site.posts %} |
6 <div class="content drop-shadow-box"> | 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 align-right"><i>{{ post.date | date_to_string }}</i></span></span> | 7 <div class="project-title-container"> |
8 <a href="{{ post.url }}" class="prettylink project-title drop-shadow-text">{{ post.title }}</a> | |
9 <span class="project-quip drop-shadow-text"><i>{{ post.date | date_to_string }}</i></span> | |
10 </div> | |
8 <hr class="project-separator"> | 11 <hr class="project-separator"> |
9 <span class="drop-shadow-text">{{ post.content | strip_html | truncatewords: 50 }}</span> | 12 <span class="drop-shadow-text">{{ post.content | strip_html | truncatewords: 50 }}</span> |
10 </div> | 13 </div> |
11 <br> | 14 <br> |
12 {% endfor %} | 15 {% endfor %} |