diff 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
line wrap: on
line diff
--- a/blog/index.html	Mon May 20 03:46:03 2024 -0400
+++ b/blog/index.html	Mon May 20 04:00:58 2024 -0400
@@ -4,7 +4,10 @@
 ---
 {% for post in site.posts %}
 	<div class="content drop-shadow-box">
-		<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>
+		<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>