summaryrefslogtreecommitdiff
path: root/source/_layouts/master.blade.php
blob: 3c34cffe7cc2a1ef6125df75fb0a6bd0c0fdb896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php use \Illuminate\Support\Str; ?>
<!doctype html>
<html lang="en">
    <head>
        <link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}">
    </head>
  <body class="px-8 lg:px-16 xl:px-32 bg-gray-900">
    <div id="main-sidebar-container">
        <article>@yield('article')</article>
        <aside>
            <p class="py-4 text-gray-200">
                <a class="block" href="/"><svg class="inline-block fill-current w-4 h-4"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8 20H3V10H0L10 0l10 10h-3v10h-5v-6H8v6z"/></svg> Home</a>
            </p>
            @foreach ($page->allCategories($posts) as $category)
                <a class="rounded p-1 text-gray-200 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a>
            @endforeach
        </aside>
    </div>
  </body>
</html>