aboutsummaryrefslogtreecommitdiff
path: root/src/templ_data/overview.rs
blob: 693db0a85e77b702be90aadb177e3d1daf7b5cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! Template data for the main overview

use super::BaseData;
use askama::Template;

#[derive(Template)]
#[template(path = "index.html", escape = "none")]
pub(crate) struct Index {
    pub base: BaseData,
    pub readme: String,
}