forked from projects/fipamo
ro
6cb9631a46
a basic preview engine has been added to ease the process of editing pages. currently it previews all basic templates and custom created pages this is will replace the external fipamo theme kit tool, which will be archived
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
|