From 282e494cae0671730ae8c0dc02f671748476b8fd Mon Sep 17 00:00:00 2001 From: Adrien Allard Date: Thu, 6 Feb 2025 11:18:08 +0100 Subject: [PATCH 1/4] docs: replace deprecated link in readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3bf083..8ff1e44 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Date used for the news is the date the file was created in git. ### HTML generation -We use https://git.collectivit.org/collectivit/jean-web to generate the +We use https://git.frog-collective.com/collectivit/jean-web to generate the website. Jinja2 templates are stored in the src directory, and use the content loaded from the 'content' folder to generate static pages. Content can be markdown document with metadata, or json files. From 702a9b151d41b424ea1a36c4ee2d423a5d2c8551 Mon Sep 17 00:00:00 2001 From: Adrien Allard Date: Thu, 6 Feb 2025 11:18:41 +0100 Subject: [PATCH 2/4] feat: update social links with new social networks. --- src/assets/img/bluesky-fill.svg | 1 + src/assets/img/instagram-fill.svg | 1 + src/assets/img/threads-fill.svg | 1 + src/lib/social_links.html | 4 ++++ src/pages/index/footer.scss | 6 +++++- 5 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src/assets/img/bluesky-fill.svg create mode 100644 src/assets/img/instagram-fill.svg create mode 100644 src/assets/img/threads-fill.svg diff --git a/src/assets/img/bluesky-fill.svg b/src/assets/img/bluesky-fill.svg new file mode 100644 index 0000000..9be9413 --- /dev/null +++ b/src/assets/img/bluesky-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/img/instagram-fill.svg b/src/assets/img/instagram-fill.svg new file mode 100644 index 0000000..b0662ca --- /dev/null +++ b/src/assets/img/instagram-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/img/threads-fill.svg b/src/assets/img/threads-fill.svg new file mode 100644 index 0000000..066b9f1 --- /dev/null +++ b/src/assets/img/threads-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/lib/social_links.html b/src/lib/social_links.html index a7a1dad..b1633de 100644 --- a/src/lib/social_links.html +++ b/src/lib/social_links.html @@ -9,4 +9,8 @@ {{ social_link('Youtube', 'youtube-fill.svg', 'https://www.youtube.com/@frog-collective') }} {{ social_link('Twitch', 'twitch-fill.svg', 'https://www.twitch.tv/frogcollective') }} {{ social_link('Mastodon', 'mastodon-fill.svg', 'https://mastodon.social/@frogcollective') }} +{{ social_link('Bluesky', 'bluesky-fill.svg', 'https://bsky.app/profile/frogcollective.bsky.social') }} +{{ social_link('Threads', 'threads-fill.svg', 'https://www.threads.net/@frogcogames') }} +{{ social_link('Instagram', 'instagram-fill.svg', 'https://www.instagram.com/frogcogames/') }} {{ social_link('Twitter - X', 'twitter-x-line.svg', 'https://x.com/FrogCoGames') }} + diff --git a/src/pages/index/footer.scss b/src/pages/index/footer.scss index 7d858a8..342b5b7 100644 --- a/src/pages/index/footer.scss +++ b/src/pages/index/footer.scss @@ -43,6 +43,10 @@ align-items: center; justify-content: end; + @media($mobile-breakpoint) { + display: block; + } + img { width: 1.8em; filter: invert(100%); @@ -51,7 +55,7 @@ &--link { @extend %button; - display: flex; + display: inline-block; padding: var(--space-xsmall); } } From 18c0e959bef5cec195eb1e4d24530ab061dd5579 Mon Sep 17 00:00:00 2001 From: Adrien Allard Date: Thu, 6 Feb 2025 12:21:12 +0100 Subject: [PATCH 3/4] feat: change footer copyright date --- src/pages/index/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index/footer.html b/src/pages/index/footer.html index aadc54f..1182b41 100644 --- a/src/pages/index/footer.html +++ b/src/pages/index/footer.html @@ -3,7 +3,7 @@ {% endfor %} diff --git a/src/pages/index/games.scss b/src/pages/index/games.scss index 6d5fca6..e725543 100644 --- a/src/pages/index/games.scss +++ b/src/pages/index/games.scss @@ -31,10 +31,21 @@ } } + &--buttons { + display: flex; + flex-direction: row; + align-self: center; + + @media($mobile-breakpoint) { + flex-direction: column; + } + } + &--button { @extend %button; display: flex; align-self: center; + margin: var(--space-small); img { width: 2em;