iwannadriveintoapoleat200kilometersperhourpleasesendhelp

This commit is contained in:
2025-09-03 21:20:40 +03:00
parent 5c0fd633db
commit cd99fea483
10 changed files with 49 additions and 24 deletions

View File

@@ -2,7 +2,7 @@ use askama::Template;
use axum::{http::StatusCode, response::Html};
#[derive(Debug, Template, Clone)]
#[template(path = "index.html")]
#[template(path = "documents.html")]
pub struct PageTemplate {}
pub async fn page() -> (StatusCode, Html<String>) {

View File

@@ -2,7 +2,7 @@ use askama::Template;
use axum::{http::StatusCode, response::Html};
#[derive(Debug, Template, Clone)]
#[template(path = "index.html")]
#[template(path = "events.html")]
pub struct PageTemplate {}
pub async fn page() -> (StatusCode, Html<String>) {

View File

@@ -2,7 +2,7 @@ use askama::Template;
use axum::{http::StatusCode, response::Html};
#[derive(Debug, Template, Clone)]
#[template(path = "index.html")]
#[template(path = "roster.html")]
pub struct PageTemplate {}
pub async fn page() -> (StatusCode, Html<String>) {