summaryrefslogtreecommitdiff
path: root/source/_layouts/master.blade.php
blob: c8398a593d512fd35924a2198f2eba3ae1a58fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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>
            @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>