-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
next sate of transition to new template
- Loading branch information
Arbeit
authored and
Arbeit
committed
Mar 17, 2018
1 parent
a59f9dc
commit 47f0da1
Showing
9 changed files
with
541 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@extends('iba::master') | ||
|
||
@section('body') | ||
|
||
<div id="os"> | ||
<div class="menu-bar"> | ||
<a href="#"><b>IBA</b></a> | ||
<a href="/iba/analog/"><b>{{ config('app.name') }}</b></a> | ||
</div> | ||
<div class="desk"> | ||
@yield('window') | ||
</div> | ||
|
||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<footer> | ||
<p> | ||
<a href="{{ url('/') }}">{{ config('app.name') }}</a> | ||
</p> | ||
<p>Powered by <a href="http://lostideaslab.com/pirates-lost-pearl/interactive-books-atelier/">Interactive Books' Atelier</a> { <a href="">Dev</a>, <a href="">Resources</a> } a product of <a href="http://lostideaslab.com/pirates-lost-pearl/">Pirate's Lost Pearl</a></p> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<ul class="c-nav c-nav--inline u-high"> | ||
<li class="c-nav__item"> | ||
<a class="navbar-item" href="{{ url('/iba/analog/') }}"> | ||
{{ config('app.name') }}'s IBA | ||
</a> | ||
<li class="c-nav__item">@stack('title')</li> | ||
<!-- | ||
<button class="button navbar-burger"> | ||
</button> | ||
--> | ||
</li> | ||
<li class="c-nav__item"> | ||
<!-- hidden on mobile --> | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@extends('iba::desk.master') | ||
|
||
@section('window') | ||
|
||
<div class="window"> | ||
|
||
<div class="bar"> | ||
<div class="menu"> | ||
<div class="window-title"> | ||
@stack('title') | ||
</div> | ||
</div> | ||
<div class="buttons"></div> | ||
<div class="tabs"> | ||
<a href="">New Tab</a> | ||
<!-- | ||
<router-link to="/outline">Outline</router-link> | ||
<router-link to="/events">Events</router-link> | ||
<router-link to="/bundle">Bundle</router-link> | ||
--> | ||
</div> | ||
</div> | ||
|
||
<div class="content"> | ||
<div class="sidebar"> | ||
@include('iba::window.menu', ['title' => '']) | ||
</div> | ||
|
||
<div class="panel"> | ||
@yield('main') | ||
</div> | ||
</div> | ||
|
||
<div class="footer"> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php $bookTypes = config('iba.book_types'); ?> | ||
<nav class="atelier-admin-menu"> | ||
<ul> | ||
@foreach ( $bookTypes as $bookType ) | ||
<li> | ||
<a class="icon" href="{{ url('/iba/analog/' . $bookType . '/create') }}"><span class="icon icon-list-add"></span> | ||
</a> | ||
<a class="text" href="{{ url('/iba/analog/' . $bookType ) }}">{{ title_case($bookType) }}</a> | ||
</li> | ||
@endforeach | ||
<li> | ||
<a class="icon" href="{{ url('/iba/analog/bundle/create') }}"><span class="icon icon-list-add"></span> | ||
</a> | ||
<a class="text" href="{{ url('/iba/analog/bundle' ) }}">Bundle</a> | ||
</li> | ||
<!-- | ||
<li><a href="{{ url('/login') }}">Login</a></li> | ||
<li><a href="{{ url('/register') }}">Register</a></li> | ||
--> | ||
</ul> | ||
</nav> |