forked from projects/fipamo
24 lines
900 B
PHP
24 lines
900 B
PHP
|
@extends('frame')
|
||
|
|
||
|
@section('title', 'The Dash | Fipamo Theme Kit')
|
||
|
|
||
|
@section('main-content')
|
||
|
<section class="index-header">
|
||
|
<div class="index-header-left">
|
||
|
<h1>Templates</h1>
|
||
|
<h2>Base</h2>
|
||
|
<a class="secondary" href="/theme/view/index">Index</a><br />
|
||
|
<a class="secondary" href="/theme/view/page">Page</a><br />
|
||
|
<a class="secondary" href="/theme/view/tags">Tags</a><br />
|
||
|
<a class="secondary" href="/theme/view/archive">Archive</a><br />
|
||
|
<h2>Custom</h2>
|
||
|
@foreach($pages as $view)
|
||
|
@if($view != 'page')
|
||
|
<a href="/theme/view/{{ $view }}" class="secondary" href="">{{ $view }}</a><br />
|
||
|
@endif
|
||
|
@endforeach
|
||
|
</div>
|
||
|
<div class="index-header-right"></div>
|
||
|
</section>
|
||
|
@endsection
|