Compare commits
No commits in common. "1b127c006a3857149e30f7ab4fd626dd35591a69" and "0e7c128df52049fb4012624f6c10044120c9494a" have entirely different histories.
1b127c006a
...
0e7c128df5
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 001-a-new-indie-studio
|
|
||||||
title: Frog Collective a new indie game development studio!
|
title: Frog Collective a new indie game development studio!
|
||||||
date: 04/21/2024
|
date: 04/21/2024
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 002-coldridge-is-out
|
|
||||||
title: Our first game is out
|
title: Our first game is out
|
||||||
date: 10/28/2024
|
date: 10/28/2024
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 003-one-year-already
|
|
||||||
title: Frog Collective is just over a year old!
|
title: Frog Collective is just over a year old!
|
||||||
date: 03/31/2025
|
date: 03/31/2025
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 001-un-nouveau-studio-indie
|
|
||||||
title: Frog Collective, un nouveau studio de développement de jeux indépendants !
|
title: Frog Collective, un nouveau studio de développement de jeux indépendants !
|
||||||
date: 21/04/2024
|
date: 21/04/2024
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 002-coldridge-est-sorti
|
|
||||||
title: Notre premier jeu est sorti !
|
title: Notre premier jeu est sorti !
|
||||||
date: 10/28/2024
|
date: 10/28/2024
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
id: 003-un-an-deja
|
|
||||||
title: Frog Collective fête son premier anniversaire !
|
title: Frog Collective fête son premier anniversaire !
|
||||||
date: 03/31/2025
|
date: 03/31/2025
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,10 @@
|
||||||
) %}
|
) %}
|
||||||
{% for news in glob("news/*.md") | sort(reverse=true, attribute='path') | map('markdown') %}
|
{% for news in glob("news/*.md") | sort(reverse=true, attribute='path') | map('markdown') %}
|
||||||
<div class="news">
|
<div class="news">
|
||||||
<a class="section--anchor" id="{{news.meta.id}}"></a>
|
<div class="news--header">
|
||||||
<a href="/{{ context.current_language }}/#{{news.meta.id}}" class="news--header-link">
|
|
||||||
<h3 class="news--date">{{ news.meta.date }}</h3>
|
<h3 class="news--date">{{ news.meta.date }}</h3>
|
||||||
<h2 class="news--title">{{ news.meta.title }}</h2>
|
<h2 class="news--title">{{ news.meta.title }}</h2>
|
||||||
</a>
|
</div>
|
||||||
<div class="news--content">
|
<div class="news--content">
|
||||||
<style>{{ news.meta.css }}</style>
|
<style>{{ news.meta.css }}</style>
|
||||||
{{ news }}
|
{{ news }}
|
||||||
|
|
|
||||||
|
|
@ -6,22 +6,17 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
&--header-link {
|
&--header {
|
||||||
display: flex;
|
display: flex;
|
||||||
color: var(--color-on-dark);
|
color: var(--color-on-dark);
|
||||||
background: var(--background-red);
|
background: var(--background-red);
|
||||||
padding: var(--space-small) var(--space-medium);
|
padding: var(--space-small) var(--space-medium);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--space-small);
|
gap: var(--space-small);
|
||||||
text-decoration: none;
|
|
||||||
|
|
||||||
@media($mobile-breakpoint) {
|
@media($mobile-breakpoint) {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: var(--background-dark);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--date {
|
&--date {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue