about: add about page and I did smth else but I can't remember

This commit is contained in:
Agahnim 2026-05-13 14:44:57 +02:00
parent 36f670e03a
commit 12bb8d69c1
Signed by: Agahnim
SSH key fingerprint: SHA256:Zj65PJnE0dRYye8Ltk/qDglynyXUxJngQ9qqx/VI+b4
7 changed files with 54 additions and 22 deletions

View file

@ -2,7 +2,7 @@ use std::sync::Arc;
use agahnim_web_v2::{ use agahnim_web_v2::{
domain::AppState, domain::AppState,
templates::{home::home, music::music, notfound::notfound}, templates::{about::about, home::home, music::music, notfound::notfound},
}; };
use axum::{Router, routing::get}; use axum::{Router, routing::get};
use tower_http::services::ServeDir; use tower_http::services::ServeDir;
@ -16,6 +16,7 @@ async fn main() {
let app = Router::new() let app = Router::new()
.route("/home", get(home)) .route("/home", get(home))
.route("/music", get(music)) .route("/music", get(music))
.route("/about", get(about))
.nest_service("/static", ServeDir::new("static")) .nest_service("/static", ServeDir::new("static"))
.fallback(notfound) .fallback(notfound)
.with_state(state); .with_state(state);

33
src/templates/about.rs Normal file
View file

@ -0,0 +1,33 @@
use askama::Template;
use axum::{
extract::State,
http::HeaderMap,
response::{Html, IntoResponse},
};
use std::sync::Arc;
use crate::domain::AppState;
#[derive(Template)]
#[template(path = "about.html")]
struct AboutTemplate<'a> {
tracks: &'a Vec<crate::domain::Track>,
}
#[derive(Template)]
#[template(path = "partials/about.html")]
struct AboutPartialTemplate {}
pub async fn about(headers: HeaderMap, state: State<Arc<AppState>>) -> impl IntoResponse {
if headers.contains_key("hx-request") {
Html(AboutPartialTemplate {}.render().unwrap())
} else {
Html(
AboutTemplate {
tracks: &state.mp_tracks,
}
.render()
.unwrap(),
)
}
}

View file

@ -1,3 +1,4 @@
pub mod about;
pub mod home; pub mod home;
pub mod music; pub mod music;
pub mod notfound; pub mod notfound;

View file

@ -217,8 +217,8 @@ table {
} }
body { body {
background-size: cover;
background-position: center; background-position: center;
background-size: auto;
min-height: 100lvh; min-height: 100lvh;
width: 100lvw; width: 100lvw;
overflow: auto; overflow: auto;
@ -231,7 +231,6 @@ body {
&:has(#content music) { &:has(#content music) {
background-image: url(assets/gifs/hmmmbg.gif); background-image: url(assets/gifs/hmmmbg.gif);
background-size: auto;
} }
&:has(#content katcenkat) { &:has(#content katcenkat) {
@ -687,7 +686,7 @@ music {
z-index: -1; z-index: -1;
pointer-events: none; pointer-events: none;
font-size: 10rem; font-size: 10rem;
animation: fadeInNOut 10s infinite; animation: fadeInNOut 5s infinite;
vertical-marquee-inner { vertical-marquee-inner {
position: absolute; position: absolute;

3
templates/about.html Normal file
View file

@ -0,0 +1,3 @@
{% extends "base.html" %} {% block content %} {% include "partials/about.html" %}
{% endblock %} {% block miniplayer %} {% include "partials/miniplayer.html" %}
{% endblock %}

View file

@ -0,0 +1,3 @@
<about>
<p>a</p>
</about>

View file

@ -1,9 +1,10 @@
<music> <music>
<vertical-marquee id="bg-text"></vertical-marquee> <vertical-marquee id="bg-text" aria-hidden="true"></vertical-marquee>
<cute-container> <cute-container>
<img src="/static/assets/gifs/music.gif" alt="Animated text 'Music'" /> <img src="/static/assets/gifs/music.gif" alt="Animated text 'Music'" />
</cute-container> </cute-container>
</music> </music>
<!-- Wall of text go!! -->
<script> <script>
(function () { (function () {
const chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; const chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
@ -17,23 +18,14 @@
const cols = Math.ceil(window.innerWidth / colWidth); const cols = Math.ceil(window.innerWidth / colWidth);
const rows = Math.ceil(window.innerHeight / rowHeight); const rows = Math.ceil(window.innerHeight / rowHeight);
for (let c = 0; c < cols; c++) { for (let c = 0; c < cols; c++) {
const col = document.createElement("vertical-marquee-inner"); const col = document.createElement("vertical-marquee-inner"); col.style.left = c *
col.style.left = c * colWidth + "px"; colWidth + "px"; for (let r = 0; r < rows; r++) {
for (let r = 0; r < rows; r++) { const span = document.createElement("text");
const span = document.createElement("text"); span.textContent = chars[Math.floor(Math.random() * chars.length)]; col.appendChild(span);
span.textContent = chars[Math.floor(Math.random() * chars.length)]; } container.appendChild(col);
col.appendChild(span);
}
container.appendChild(col);
} }
} } let resizeTimer; window.addEventListener("resize", function () {
let resizeTimer;
window.addEventListener("resize", function () {
clearTimeout(resizeTimer); clearTimeout(resizeTimer);
resizeTimer = setTimeout(build, 150); resizeTimer = setTimeout(build, 150);
}); }); build();
})(); </script>
build();
})();
</script>