mirror of
https://github.com/flarum/core.git
synced 2025-08-06 16:36:47 +02:00
Build very rough HTML-only content
And redirect to the "no JS" mode if the JS app crashes on boot. ClientView/ClientAction is all a bit of a mess and will need to be radically cleaned up at some point...
This commit is contained in:
6
framework/core/views/content.blade.php
Normal file
6
framework/core/views/content.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
@if (! $noJs) <noscript> @endif
|
||||
<div class="container">
|
||||
<div class="Alert">You're viewing the HTML-only version of {{ $forum->attributes->title }}. Upgrade your browser for the full version.</div>
|
||||
</div>
|
||||
{!! $content !!}
|
||||
@if (! $noJs) </noscript> @endif
|
Reference in New Issue
Block a user