# Most “traditional” or classic forum Category listing

**URL:** https://meta.discourse.org/t/most-traditional-or-classic-forum-category-listing/89838
**Category:** UX
**Created:** [14 juni 2018 om 03:26 UTC](https://meta.discourse.org/t/most-traditional-or-classic-forum-category-listing/89838 "2018-06-14T03:26:40Z")
**Posts on this page:** 1
**Showing post:** 8

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [15 juni 2018 om 12:13 UTC](https://meta.discourse.org/t/most-traditional-or-classic-forum-category-listing/89838/8 "2018-06-15T12:13:08Z")

</div>

> [@meetdilip](#):
>
> Is it possible to change the homepage layout as a whole ? What should we be editing ?

The “homepage” depends on your site settings. In any case, I think what you’re looking for is the templates Discourse uses. You can find those [here](https://github.com/discourse/discourse/tree/master/app/assets/javascripts/discourse/templates)

you can either add new things to a template using its plugin outlets:

> [@Using Plugin Outlet Connectors from a Theme or Plugin](https://meta.discourse.org/t/adding-plugin-outlets-using-a-theme/32727):
>
> Discourse includes hundreds of Plugin Outlets which can be used to inject new content or replace existing contend in the Discourse UI. ‘Outlet arguments’ are made available so that content can be customized based on the context. Choosing an outlet To find the name of a plugin outlet, search Discourse core for “\<PluginOutlet”, or use the [plugin outlet locations](https://meta.discourse.org/t/plugin-outlet-locations-theme-component/100673) theme component. (e.g. topic-above-posts). Wrapper outlets Some outlets in core look like \<PluginOutlet @name="foo" /\>. These allow you…

or completely overwrite it using something like:

```plaintext
<script type="text/x-handlebars" data-template-name="foo">
{{! go wild here}}
</script>

```

where `foo` is the name of the template you want to override exluding the file extension or `.hbs` and its path relative to the templates folder.

---

_[View the full topic](https://meta.discourse.org/t/most-traditional-or-classic-forum-category-listing/89838)._
