mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
39 lines
806 B
PHP
39 lines
806 B
PHP
<?php
|
|
/**
|
|
* Forum Client Template
|
|
*
|
|
* NOTE: You shouldn't edit this file directly. Your changes will be overwritten
|
|
* when you update Flarum. See flarum.org/docs/templates to learn how to
|
|
* customize your forum's layout.
|
|
*
|
|
* Flarum's JavaScript client mounts various components into key elements in
|
|
* this template. They are distinguished by their ID attributes:
|
|
*
|
|
* - #app
|
|
* - #app-navigation
|
|
* - #drawer
|
|
* - #header
|
|
* - #header-navigation
|
|
* - #home-link
|
|
* - #header-primary
|
|
* - #header-secondary
|
|
* - #content
|
|
* - #composer
|
|
*/
|
|
?>
|
|
<div id="app" class="App EmbedApp">
|
|
|
|
<main class="App-content">
|
|
<div id="content"></div>
|
|
|
|
{!! $content !!}
|
|
|
|
<div class="App-composer">
|
|
<div class="container">
|
|
<div id="composer"></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|