{% extends "../../layouts/topic.tera" %} {% block content %} ## Your first page We're going to speedrun making your first site with Roxy. Create a new directory for the project. ```bash mkdir my-new-site cd my-new-site ``` Create two direcroties in your new project, one for input and one for output. ```bash mkdir {input,output} ``` Create a new file with some markdown content in `input` to add a page. ```bash touch input/index.md cat << EOF > input/index.md # Hello, world! This is my new site! EOF ``` Build the site with `roxy-cli`. ```bash roxy-cli ./input/ ./output/ ``` Host the content and view it. ```bash cd output python3 -m http.server # visit localhost:8000 with your browser ``` ## Adding a layout At the top level of your project, create a new directory and add a new file. We don't want this being built with the rest of the content. ```bash mkdir layouts touch layouts/base.tera ``` Let's add some boilerplate HTML to `layouts/base.tera` ```html