metamuffin's personal website


About 1745658714913 milliseconds have passed since midnight of the january the first in 1970.
------------------------------------------------------
    (ContentType::CSS, include_str!("../assets/style.css"))
}



======================================
    Contents of "main.rs"
======================================
/*
    This file is part of metamuffins website (https://codeberg.org/metamuffin/website)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2023 metamuffin <metamuffin.org>
*/
#![feature(const_trait_impl)]
pub mod blog;
pub mod error;
pub mod layout;
pub mod pages;
pub mod projects;
pub mod source;
pub mod wellknown;

use blog::*;
use error::*;
use pages::*;
use projects::*;
use rocket::{catchers, fairing::AdHoc, fs::FileServer, http::Header, routes};
use source::*;
use wellknown::*;