> For the complete documentation index, see [llms.txt](https://codedthemes.gitbook.io/mantis-bootstrap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codedthemes.gitbook.io/mantis-bootstrap/structure/directory-structure.md).

# Directory Structure

Since mantis comes with a gulp, it has minor differences in structure but one can pick any one and start making changes, both are totally independent.&#x20;

{% tabs %}
{% tab title="HTML" %}

```
dist/
├── assets/
│   ├── css/
│   ├── fonts/
│   ├── images/
│   ├── js/
│   ├── json/
├── admins/
├── application/
├── chart/
├── dashboard/
├── demo/
├── elements/
├── forms/
├── layouts/
├── other/
├── pages/
├── table/
├── widget/
├── index.html
```

{% endtab %}

{% tab title="GULP" %}

```
src/
├── assets/
│   ├── fonts/
│   ├── images/
│   ├── js/
│   ├── json/
│   ├── scss/
├── html/
│   ├── admins/
│   ├── application/
│   ├── chart/
│   ├── dashboard/
│   ├── demo/
│   ├── elements/
│   ├── forms/
│   ├── layouts/
│   ├── other/
│   ├── pages/
│   ├── table/
│   ├── widget/
│   ├── index.html
├── .babelrc
├── gulpfile.js
├── package.json
├── README.MD
```

{% endtab %}
{% endtabs %}
