//! The repository page subtree mod about; mod details; pub use about::render as about; pub use details::render as details; use crate::types::RepoData; /// A template wrapper for repository data pub(self) struct RepoWrapper { pub(self) data: RepoData, pub(self) logo: String, }