mirror of
https://github.com/documize/community.git
synced 2025-08-02 20:15:26 +02:00
Outline framework in place
This commit is contained in:
parent
4045197871
commit
942bc386f4
18 changed files with 752 additions and 177 deletions
15
gui/app/pods/theming/controller.js
Normal file
15
gui/app/pods/theming/controller.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
import Controller from '@ember/controller';
|
||||
|
||||
export default Controller.extend({
|
||||
});
|
15
gui/app/pods/theming/route.js
Normal file
15
gui/app/pods/theming/route.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
import Route from '@ember/routing/route';
|
||||
|
||||
export default Route.extend({
|
||||
});
|
23
gui/app/pods/theming/template.hbs
Normal file
23
gui/app/pods/theming/template.hbs
Normal file
|
@ -0,0 +1,23 @@
|
|||
{{#layout/top-bar}}
|
||||
<li class="item">
|
||||
{{#link-to "folders" class="link"}}SOMETHING{{/link-to}}
|
||||
</li>
|
||||
<li class="item">
|
||||
{{#link-to "folders" class="link selected"}}Space X July 2019{{/link-to}}
|
||||
</li>
|
||||
{{/layout/top-bar}}
|
||||
|
||||
<div class="container-fluids">
|
||||
<div class="row no-gutters">
|
||||
<div class="col-3 d-none d-md-block">
|
||||
{{#layout/side-bar}}
|
||||
<h1>ddd</h1>
|
||||
{{/layout/side-bar}}
|
||||
</div>
|
||||
<div class="col-9">
|
||||
content
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue