Some checks failed
CI / Check typos (push) Successful in 8s
CI / Check links (push) Successful in 9s
CI / Clippy (push) Failing after 50s
CI / Build container (push) Has been cancelled
CI / Deploy on waypoint (push) Has been cancelled
CI / Build and test (push) Has been cancelled
28 lines
474 B
Rust
28 lines
474 B
Rust
use assetserver::Asset;
|
|
|
|
use crate::{page::Page, routes::assets::Image_Icon};
|
|
|
|
mod handouts;
|
|
mod index;
|
|
|
|
pub use handouts::handouts;
|
|
pub use index::index;
|
|
|
|
pub fn links() -> Page {
|
|
/*
|
|
Dead links:
|
|
|
|
https://www.commitstrip.com/en/
|
|
http://www.3dprintmath.com/
|
|
*/
|
|
|
|
Page::from_markdown(include_str!("links.md"), Some(Image_Icon::URL.to_string()))
|
|
}
|
|
|
|
pub fn betalupi() -> Page {
|
|
Page::from_markdown(
|
|
include_str!("betalupi.md"),
|
|
Some(Image_Icon::URL.to_string()),
|
|
)
|
|
}
|