//!

personal site of

/*

*/

mod visuals {

pub const POSTS: &str = ”

“;

个人笔记

pub const FOODIE: &str = ”

“;

吃吃速报

pub const NATSCI: &str = ”

“;

自然科学笔记

pub const NETCOM: &str = ”

“;

通讯技术笔记

pub const BLOGOPS: &str = ”

“;

后台日志

pub const NEVSVIF: &str = ”

“;

pub const ???: &str = ”

“;

???

}

/*

posts */

/*

foodie */

/*

natsci */

/*

netcom */

/*

blogops */

/*

nevsvif */

/*

??? */

mod links {

pub const POSTS: &str = ”

fivsevn.com/posts

“;

pub const FOODIE: &str = ”

fivsevn.com/foodie

“;

pub const NATSCI: &str = ”

fivsevn.com/natsci

“;

pub const NETCOM: &str = ”

fivsevn-devlog/netcom

“;

pub const BLOGOPS: &str = ”

fivsevn-devlog/blogops

“;

pub const NEVSVIF: &str = ”

???

“;

pub const ???: &str = ”

???

“;

}

struct Home<‘a> {

}

struct Visuals<’a> {

posts: &‘a str, //

foodie: &‘a str, //

natsci: &’a str, //

netcom: &‘a str, //

blogops: &‘a str, //

nevsvif: &’a str, //

???: &’a str, //

}

struct Routes<‘a> {

}

const HOME: Home = Home {

title: ”

五月七日的思考札记

“,

author: ”

“,

visuals: Visuals {

},

routes: Routes {

},

};

fn main() {

render(&HOME);

}