2025-05-16 17:37:53 -06:00
|
|
|
@extends('frame')
|
2024-04-25 15:03:06 -06:00
|
|
|
|
|
|
|
@section('title', 'The Dash | Fipamo Theme Kit')
|
|
|
|
|
2025-05-16 17:37:53 -06:00
|
|
|
@section('main-content')
|
|
|
|
<section class="index-header">
|
|
|
|
<div class="index-header-left">
|
|
|
|
<h1>Templates</h1>
|
|
|
|
<h2>Base</h2>
|
|
|
|
<a class="secondary" href="/dashboard/themekit/view/index">Index</a><br />
|
|
|
|
<a class="secondary" href="/dashboard/themekit/view/page">Page</a><br />
|
|
|
|
<a class="secondary" href="/dashboard/themekit/view/tags">Tags</a><br />
|
|
|
|
<a class="secondary" href="/dashboard/themekit/view/archive">Archive</a><br />
|
|
|
|
<h2>Custom</h2>
|
|
|
|
@foreach($pages as $view)
|
|
|
|
@if($view != 'page')
|
|
|
|
<a href="/dashboard/themekit/view/{{$view}}" class="secondary" href="">{{$view}}</a><br />
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
<div class="index-header-right"></div>
|
|
|
|
</section>
|
|
|
|
@endsection
|