blob: 429c4a7dec3c428f9840fbd646cc5fa669286366 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
<ol>
@foreach ($page->allCategories($posts) as $category)
<li><a href="/categories/{{ $category }}">{{ $category }}</a></li>
@endforeach
</ol>
</aside>
</div>
</body>
</html>
|