nbsp 0.0.1

non-breaking space: a thoughtful community forum platform
1
2
3
4
5
6
7
8
9
10
11
//! All [`askama`] HTML template definitions

use askama::Template;

/// The homepage template
#[derive(Template)]
#[template(path = "pages/home.html")]
pub struct Homepage {
    /// An optional HTML section to show as a yellow notice on the homepage
    pub nbsp_homepage_notice: Option<String>,
}