Johani
(Joe)
8
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
you can either add new things to a template using its plugin outlets:
or completely overwrite it using something like:
<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.
2 Likes