> For the complete documentation index, see [llms.txt](https://lorvent.gitbook.io/rare/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lorvent.gitbook.io/rare/faq/select-layout.md).

# Setting Layout As Default

When you run the command `gulp`, you will get the view in default layout style set earlier. If you would like other layouts, each time you need to run the command like `gulp nunjucks --layout name`

To simplify the above work, replace a part of the code of `layout.html` (available in path `src/templates/macros/layout.html)`

as follows.

**Existing code in layout.html**

```
{% macro layout_type(layout) %}

{% if layout=="default" %}
    {% extends "default.html" %}

{% elif layout=="fixed-footer" %}
    {% extends "fixed-footer.html" %}

<!--our code-->

    {% else %}
    {% extends "default.html" %}

{% endif %}
{% endmacro %}

{{ layout_type(layout) }}
```

Replacing code:

In the above code replace the code

```
{% else %}
{% extends "default.html" %}
```

with

```
{% else %}
 {% extends "horizontal-layout.html" %}
```

When the above code is replaced, it is not necessary to run like `gulp nunjucks --layout name` each time. Just simply run `gulp`.

That is all what you need to do.
