aboutsummaryrefslogblamecommitdiffstats
path: root/src/templates.rs
blob: 8eafd9854e8c95341796ee95cffb5f2a8d7359e8 (plain) (tree)
1
2
3
4
5
6
7





                              
                  







































                                                                                             













                                 








                                  
use std::collections::HashSet;

use askama::Template;
use poem::http::StatusCode;
use rand::{thread_rng, Rng};

use crate::poetry;
use crate::posts::Post;
use crate::{blog, scrobbles::NowPlayingData};

mod filters {
    pub fn mytruncate(s: impl std::fmt::Display, length: usize) -> ::askama::Result<String> {
        let mut s = s.to_string();
        s.truncate(length);
        Ok(s)
    }
}

#[derive(Template)]
#[template(path = "base.html")]
struct Base;

#[derive(Template)]
#[template(path = "home.html")]
pub struct Home {
    pub is_live: bool,
    pub listenbrainz: NowPlayingData,
    pub blogposts: Vec<blog::Blogpost>,
}

#[derive(Template)]
#[template(path = "blogpost.html")]
pub struct Blogpost {
    pub blogpost: blog::Blogpost,
    pub filter_tags: HashSet<String>,
}

// filtertags, blogpost-panel
#[derive(Template)]
#[template(path = "blog.html")]
pub struct Blog {
    pub blogposts: Vec<blog::Blogpost>,
    pub tags: Vec<String>,
    pub filter_tags: HashSet<String>,
}

#[derive(Template)]
#[template(path = "poem.html")]
pub struct Poem {
    pub poem: poetry::Poem,
    pub jiggle: isize,
}

#[derive(Template)]
#[template(path = "poetry.html")]
pub struct Poetry {
    pub poems: Vec<poetry::Poem>,
    pub jiggle: isize,
}

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

#[derive(Template)]
#[template(path = "error.html")]
pub struct Error {
    pub status: StatusCode,
    pub message: String,
}