Skip to content

Commit

Permalink
fix: post sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
minikin committed Dec 9, 2024
1 parent cf100dc commit eec170e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 8 deletions.
14 changes: 10 additions & 4 deletions source/index.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,20 @@ title: Catalyst Voices Updates
<article class="post">
<!-- Left column with metadata -->
<div class="post-meta">
{% if page.data['publishDate'] %}
<time class="date" datetime="{{ page.data['publishDate'] }}">
{{ page.data['publishDate'] }}
{% if page.data['displayDateFormat'] %}
<time class="date" datetime="{{ page.data['displayDateFormat'] }}">
{{ page.data['displayDateFormat'] }}
</time>
{% endif %}

{% if page.data['title'] %}
<h2 class="title">{{ page.data['title'] }}</h2>
<h2 class="title">
{% if page.data['url'] %}
<a href="{{ page.data['url'] }}" class="post-title-link">{{ page.data['title'] }}</a>
{% else %}
{{ page.data['title'] }}
{% endif %}
</h2>
{% endif %}

{% if page.data['platforms'] %}
Expand Down
3 changes: 2 additions & 1 deletion source/posts/mve1/sustainable-living.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: Sustainable Living - Simple Steps to Make a Difference
description: <video src="https://www.shutterstock.com/shutterstock/videos/3434489259/preview/stock-footage-creative-office-professional-female-programmer-uses-headphones-working-on-desktop-computer.webm" controls muted> Explore practical ways to adopt a sustainable lifestyle and contribute to a healthier planet.
publishDate: 13 Nov 2024
publishDate: 2024-11-13
displayDateFormat: 13 November 2024
---

<video src="https://www.shutterstock.com/shutterstock/videos/3434489259/preview/stock-footage-creative-office-professional-female-programmer-uses-headphones-working-on-desktop-computer.webm" controls autoplay muted> muted</video>
Expand Down
3 changes: 2 additions & 1 deletion source/posts/mve2/the-revival-of-vintage-gaming-consoles.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: The Revival of Vintage Gaming Consoles
description: <video src="https://www.shutterstock.com/shutterstock/videos/3589664137/preview/stock-footage-hong-kong-china-shoppers-walk-past-a-poster-showcasing-the-apple-vision-pro-apple.webm" controls muted> muted</video> Exploring the resurgence of interest in vintage gaming consoles and what makes them so appealing today.
publishDate: 10 Nov 2024
publishDate: 2024-11-10
displayDateFormat: 10 November 2024
---
# The Revival of Vintage Gaming Consoles

Expand Down
3 changes: 2 additions & 1 deletion source/posts/mve3/the-power-of-positive-thinking.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: The Power of Positive Thinking - Transform Your Mindset
description: <video src="https://www.shutterstock.com/shutterstock/videos/3434489259/preview/stock-footage-creative-office-professional-female-programmer-uses-headphones-working-on-desktop-computer.webm" controls autoplay muted> muted </video> Discover the benefits of positive thinking and learn how to cultivate a more optimistic mindset for a happier life.
publishDate: 14 Nov 2024
publishDate: 2024-11-14
displayDateFormat: 14 November 2024
---
# The Power of Positive Thinking: Transform Your Mindset
Positive thinking is more than just a feel-good concept—it has the power to transform your life and enhance your overall well-being. Cultivating a positive mindset can lead to greater happiness, improved health, and better relationships. Let’s explore the benefits of positive thinking and how you can harness its power to improve your life.
Expand Down
3 changes: 2 additions & 1 deletion source/posts/test/2024-12-09-test-3.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: Post Title Test
description: <iframe width="560" height="315" src="https://www.youtube.com/embed/7DYDsx1rMJc?si=9AIAjt5OcNO9sPBG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> Explore practical ways to adopt a sustainable lifestyle and contribute to a healthier planet.
publishDate: 09 December 2024
publishDate: 2024-12-09
displayDateFormat: 09 December 2024
---

# Test
Expand Down
9 changes: 9 additions & 0 deletions source/styles/home.sass
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ body {
}
}

.post-title-link {
text-decoration: none;
color: inherit;
}

.post-title-link:hover {
text-decoration: underline;
}

.read-more {
display: inline-flex;
padding: get-spacing("xs") get-spacing("md");
Expand Down

0 comments on commit eec170e

Please sign in to comment.