Login
4 branches 0 tags
Ben (Desktop/Arch) Fixed deploy rsync 403513d 1 month ago 122 Commits
rubhub / src / controllers / contact.rs
use askama::Template;
use axum::response::Html;

use crate::views::ThemedRender;

#[derive(Template)]
#[template(path = "contact.html")]
struct ContactTemplate;

pub async fn contact() -> Html<String> {
    Html(ContactTemplate.render_with_theme())
}