Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f4d3041
deleted unused pages
minnaheim Jun 27, 2025
9560f80
added navbar into AppHeader (vorbild ZRUG)
minnaheim Jun 27, 2025
97e63fb
added dark theme for navigation
minnaheim Jun 29, 2025
11fb9b5
added dark theme logo, toggle theme functionality & removed imports o…
minnaheim Jun 29, 2025
d86a80b
added badge to announce course
minnaheim Jun 29, 2025
05c3e15
commented out navbar & del mock pages (tbc on new branch)
minnaheim Jul 1, 2025
5055867
changed icons to match theme
minnaheim Jul 1, 2025
dfc6d3f
rebasing web update
mbannert Aug 15, 2025
1a94495
adding course materials website
mbannert Aug 15, 2025
0be36df
fixing issue with dynamic badge
mbannert Aug 15, 2025
eac79ae
fixing issue with dynamic badge, finally able to stage it
mbannert Aug 15, 2025
91b4319
first draft: git videos page
minnaheim Aug 5, 2025
f79ffa8
added card component for git vids & added content
minnaheim Aug 18, 2025
d975fe3
fixed links that didn't work, an svg & spelling
minnaheim Aug 18, 2025
253cbf0
wip, dark theme svg missing, add a third group of videos or remove on…
mbannert Aug 18, 2025
0f39381
re-arranged video listing, preparing upper cards, too
mbannert Aug 19, 2025
694c470
added screenshots to 1st card
minnaheim Aug 22, 2025
eb9d4ee
added carousel
minnaheim Aug 27, 2025
4a0b4a9
module name changes and sequence
mbannert Aug 29, 2025
c26086b
added autoplay for carousel, ZRUG into footer
minnaheim Aug 29, 2025
a2d6966
fixed errors, why no build was happening
minnaheim Aug 29, 2025
aba4bbc
fix evaluation in autoplay of carousel
mbannert Sep 5, 2025
1a1b0b4
done. 2025 go.
mbannert Sep 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hacking for Science Course Website

visit [h4sci.github.io](https://h4sci.github.io)
visit [h4sci.github.io](https://h4sci.github.io)


Hacking for Science is a course project by Dr. Matthias Bannert.
Expand All @@ -16,4 +16,4 @@ Hacking for Science is a course project by Dr. Matthias Bannert.

website built with [astro](https://astro.build)

project uses [bun](https://bun.com), to run app use `bun run start`
project uses [bun](https://bun.com), to run app use `bun run start`
13 changes: 2 additions & 11 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
import { defineConfig } from 'astro/config';

import tailwind from "@astrojs/tailwind";

import icon from 'astro-icon';
import icon from "astro-icon";

// https://astro.build/config
export default defineConfig({
integrations: [
tailwind(),
icon({
include: {
'simple-icons': ['*'], // Include all simple-icons
'bx': ['*'], // Include all boxicons (for bxl-linkedin)
},
})
],
integrations: [tailwind(), icon()],
site: 'https://h4sci.github.io'
});
Loading