Hi guys, I want to add some HTML tags above the posts (discussions) that are shown on the home page. I tried to add <p>TEST?</p> in/var/www/html/vendor/flarum/core/views/index.blade.php right under <ul>
<?php
$url = app('Flarum\Forum\UrlGenerator');
?>
<div class="container">
<h2>{{ $translator->trans('core.views.index.all_discussions_heading') }}</h2>
<ul>
<p>TEST?</p>
@foreach ($document->data as $discussion)
<li>
<a href="{{ $url->toRoute('discussion', [
'id' => $discussion->id . '-' . $discussion->attributes->slug
]) }}">
{{ $discussion->attributes->title }}
</a>
</li>
@endforeach
</ul>
<a href="{{ $url->toRoute('index') }}?page={{ $page + 1 }}">{{ $translator->trans('core.views.index.next_page_button') }} »</a>
</div>
When I navigate to my forum on Google Chrome and use the Developer Tools, I can see my <p>TEST?</p> between the <noscript> tag, obviously that's not what I am trying to achieve. How can I hard code some piece of html code into flarum's index page?