Compare commits

..

No commits in common. "1b127c006a3857149e30f7ab4fd626dd35591a69" and "0e7c128df52049fb4012624f6c10044120c9494a" have entirely different histories.

8 changed files with 3 additions and 15 deletions

View File

@ -1,5 +1,4 @@
---
id: 001-a-new-indie-studio
title: Frog Collective a new indie game development studio!
date: 04/21/2024
---

View File

@ -1,5 +1,4 @@
---
id: 002-coldridge-is-out
title: Our first game is out
date: 10/28/2024
---

View File

@ -1,5 +1,4 @@
---
id: 003-one-year-already
title: Frog Collective is just over a year old!
date: 03/31/2025
---

View File

@ -1,5 +1,4 @@
---
id: 001-un-nouveau-studio-indie
title: Frog Collective, un nouveau studio de développement de jeux indépendants !
date: 21/04/2024
---

View File

@ -1,5 +1,4 @@
---
id: 002-coldridge-est-sorti
title: Notre premier jeu est sorti !
date: 10/28/2024
---

View File

@ -1,5 +1,4 @@
---
id: 003-un-an-deja
title: Frog Collective fête son premier anniversaire !
date: 03/31/2025
---

View File

@ -9,11 +9,10 @@
) %}
{% for news in glob("news/*.md") | sort(reverse=true, attribute='path') | map('markdown') %}
<div class="news">
<a class="section--anchor" id="{{news.meta.id}}"></a>
<a href="/{{ context.current_language }}/#{{news.meta.id}}" class="news--header-link">
<div class="news--header">
<h3 class="news--date">{{ news.meta.date }}</h3>
<h2 class="news--title">{{ news.meta.title }}</h2>
</a>
</div>
<div class="news--content">
<style>{{ news.meta.css }}</style>
{{ news }}

View File

@ -6,22 +6,17 @@
display: flex;
flex-direction: column;
&--header-link {
&--header {
display: flex;
color: var(--color-on-dark);
background: var(--background-red);
padding: var(--space-small) var(--space-medium);
align-items: center;
gap: var(--space-small);
text-decoration: none;
@media($mobile-breakpoint) {
flex-direction: column;
}
&:hover {
background: var(--background-dark);
}
}
&--date {