2015-07-07 17:53:13 +08:00
|
|
|
<?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:
|
|
|
|
*
|
|
|
|
* - #page
|
|
|
|
* - #page-back-button
|
|
|
|
* - #header
|
|
|
|
* - #header-back-button
|
|
|
|
* - #home-link
|
|
|
|
* - #header-primary-controls
|
|
|
|
* - #header-secondary-controls
|
|
|
|
* - #footer
|
|
|
|
* - #footer-primary-controls
|
|
|
|
* - #footer-secondary-controls
|
|
|
|
* - #content
|
|
|
|
* - #composer
|
|
|
|
*/
|
|
|
|
?>
|
2015-04-25 20:58:39 +08:00
|
|
|
<div class="global-page" id="page">
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
<div id="back-control"></div>
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
<div class="global-drawer">
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
<header class="global-header" id="header">
|
|
|
|
<div id="back-button"></div>
|
|
|
|
<div class="container">
|
2015-07-07 17:53:13 +08:00
|
|
|
<h1 class="header-title">
|
|
|
|
<a href="{{ $forum->attributes->baseUrl }}" id="home-link">
|
|
|
|
{{ $forum->attributes->title }}
|
|
|
|
</a>
|
|
|
|
</h1>
|
2015-04-25 20:58:39 +08:00
|
|
|
<div id="header-primary" class="header-primary"></div>
|
|
|
|
<div id="header-secondary" class="header-secondary"></div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
<footer class="global-footer" id="footer">
|
|
|
|
<div class="container">
|
|
|
|
<div id="footer-primary" class="footer-primary"></div>
|
|
|
|
<div id="footer-secondary" class="footer-secondary"></div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
</div>
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
<main class="global-content">
|
|
|
|
<div id="content"></div>
|
|
|
|
<div class="composer-container">
|
|
|
|
<div class="container">
|
|
|
|
<div id="composer"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
2015-07-07 17:53:13 +08:00
|
|
|
|
2015-04-25 20:58:39 +08:00
|
|
|
</div>
|