first commit
This commit is contained in:
1
templates/content/index.php
Normal file
1
templates/content/index.php
Normal file
@ -0,0 +1 @@
|
||||
<h1>Hello world</h1>
|
18
templates/index.php
Normal file
18
templates/index.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
script('mywiki', 'script');
|
||||
style('mywiki', 'style');
|
||||
?>
|
||||
|
||||
<div id="app">
|
||||
<div id="app-navigation">
|
||||
<?php print_unescaped($this->inc('navigation/index')); ?>
|
||||
<?php print_unescaped($this->inc('settings/index')); ?>
|
||||
</div>
|
||||
|
||||
<div id="app-content">
|
||||
<div id="app-content-wrapper">
|
||||
<?php print_unescaped($this->inc('content/index')); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
10
templates/navigation/index.php
Normal file
10
templates/navigation/index.php
Normal file
@ -0,0 +1,10 @@
|
||||
<ul>
|
||||
<li><a href="#">First level entry</a></li>
|
||||
<li>
|
||||
<a href="#">First level container</a>
|
||||
<ul>
|
||||
<li><a href="#">Second level entry</a></li>
|
||||
<li><a href="#">Second level entry</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
10
templates/settings/index.php
Normal file
10
templates/settings/index.php
Normal file
@ -0,0 +1,10 @@
|
||||
<div id="app-settings">
|
||||
<div id="app-settings-header">
|
||||
<button class="settings-button"
|
||||
data-apps-slide-toggle="#app-settings-content"
|
||||
></button>
|
||||
</div>
|
||||
<div id="app-settings-content">
|
||||
<!-- Your settings in here -->
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user