roxy-docs/in/pages/guides/routing.md
2024-02-21 09:10:31 -05:00

37 lines
1 KiB
Markdown

{% extends "../../../layouts/topic.tera" %}
{% block content %}
Roxy attempts to preserve the original directory structure of its input.
An example of a possible Roxy-generated site is demonstrated below.
```
.
└── my-site/
├── content/
│ ├── blog/
│ │ ├── index.md
│ │ ├── index.toml
│ │ ├── post-1.md
│ │ ├── post-1.toml
│ │ ├── post-2.md
│ │ ├── post-2.toml
│ │ └── post-3/
│ │ ├── index.md
│ │ └── index.toml
│ ├── index.md
│ └── index.toml
└── output/
├── blog/
│ ├── index.html
│ ├── post-1/
│ │ └── index.html
│ ├── post-2/
│ │ └── index.html
│ └── post-3/
│ └── index.html
└── index.html
```
{% endblock content %}