Skip to content

Commit

Permalink
next sate of transition to new template
Browse files Browse the repository at this point in the history
  • Loading branch information
Arbeit authored and Arbeit committed Mar 17, 2018
1 parent a59f9dc commit 47f0da1
Show file tree
Hide file tree
Showing 9 changed files with 541 additions and 0 deletions.
443 changes: 443 additions & 0 deletions composer.lock

Large diffs are not rendered by default.

Binary file added src/fonts/photon-entypo.eot
Binary file not shown.
Binary file added src/fonts/photon-entypo.ttf
Binary file not shown.
Binary file added src/fonts/photon-entypo.woff
Binary file not shown.
16 changes: 16 additions & 0 deletions src/resources/views/desk/master.blade.php
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
6 changes: 6 additions & 0 deletions src/resources/views/window/footer.blade.php
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>
15 changes: 15 additions & 0 deletions src/resources/views/window/header.blade.php
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>
40 changes: 40 additions & 0 deletions src/resources/views/window/master.blade.php
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
21 changes: 21 additions & 0 deletions src/resources/views/window/menu.blade.php
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>

0 comments on commit 47f0da1

Please sign in to comment.