animated logo
Some checks failed
test / cargo test (push) Failing after 1m4s

This commit is contained in:
2024-10-31 19:22:57 +01:00
parent 2ff39c6c1d
commit 2ec4ed6c4e
8 changed files with 103 additions and 41 deletions

View File

@ -0,0 +1,10 @@
use askama::Template;
use axum::http::StatusCode;
#[derive(Template)]
#[template(path = "assets/animated_logo.html")]
pub struct AnimatedLogoTemplate {}
pub async fn render_animated_logo() -> Result<AnimatedLogoTemplate, StatusCode> {
Ok(AnimatedLogoTemplate {})
}

View File

@ -1,4 +1,5 @@
pub mod admin;
pub mod animated_logo;
pub mod blog_post_list;
pub mod blog_post_page;
pub mod broadcast_list;