···1010cd my-website
1111```
12121313-Next, add Maudit as a dependency in your `Cargo.toml` file, or run `cargo add maudit` to do so automatically:
1313+Next, add Maudit as a dependency in your `Cargo.toml` file, or run `cargo add maudit` to do so automatically. You might also want to add [Maud](https://maud.lambda.xyz/) as a dependency if you plan to use it for templating.
14141515```toml
1616[dependencies]
1717maudit = "0.6"
1818+maud = "0.27" # optional
1819```
19202021Voilà! You can now use Maudit in your project. Check out the rest of the [documentation](/docs) for more information on how to use Maudit, or if you prefer jumping straght into the code, take a look at the [examples](https://github.com/bruits/maudit/tree/main/examples) and the [API documentation](https://docs.rs/maudit).
+2-2
website/content/docs/quick-start.md
···5566In this guide, you'll learn how to create a Maudit website and the general basis of Maudit in a few minutes of reading.
7788-If you prefer to read more detailed explanations, including exploration of various Maudit concepts, please read the [the tutorial]().
88+If you prefer to read more detailed explanations, including exploration of various Maudit concepts, please read the [core concepts](/docs/content/).
991010**This guide assumes that you have Rust installed and are familiar with the terminal.**
1111···72727373fn main() -> Result<BuildOutput, Box<dyn std::error::Error>> {
7474 coronate(
7575- routes![Index],
7575+ routes![HelloWorld],
7676 content_sources![],
7777 BuildOptions::default()
7878 )