1 2 3 4 5 6 7 8 9 10 11 12 13
//! Metadata contains information about the page. mod base; pub use base::*; mod head; pub use head::*; mod link; pub use link::*; mod meta; pub use meta::*; mod style; pub use style::*; mod title; pub use title::*;