This commit is contained in:
10
src/pages/animated_logo.rs
Normal file
10
src/pages/animated_logo.rs
Normal 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 {})
|
||||
}
|
@ -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;
|
||||
|
Reference in New Issue
Block a user