//!

personal site of

/*

*/

mod visuals {

pub const POSTS: &str = ”

“;

个人笔记

pub const FOODIE: &str = ”

“;

吃吃速报

pub const NATSCI: &str = ”

“;

自然科学笔记

pub const NETCOM: &str = ”

“;

通讯技术笔记

pub const STILLS: &str = ”

“;

静态影像存档

pub const MOTION: &str = ”

“;

动态影像存档

pub const DEVLOG: &str = ”

“;

后台

pub const NEVSVIF: &str = ”

“;

pub const ???: &str = ”

“;

???

}

/*

posts */

/*

foodie */

/*

natsci */

/*

netcom */

/*

stills */

/*

motion */

/*

devlog */

/*

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 STILLS: &str = ”

fivsevn.com/stills

“;

pub const MOTION: &str = ”

fivsevn.com/motion

“;

pub const DEVLOG: &str = ”

devlog.fivsevn.com

“;

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, //

stills: &‘a str, //

motion: &‘a str, //

devlog: &‘a str, //

nevsvif: &’a str, //

???: &’a str, //

}

struct Routes<‘a> {

}

const HOME: Home = Home {

title: ”

五月七日的思考札记

“,

author: ”

“,

visuals: Visuals {

},

routes: Routes {

},

};

fn main() {

render(&HOME);

}