blob: 7c1cedf8b474071521ca30815de86f03019b9cdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}">
</head>
<body>
<article>@yield('article')</article>
<aside>
<ol>
@foreach ($page->allCategories($posts) as $category)
<li><a href="/categories/{{ $category }}">{{ $category }}</a></li>
@endforeach
</ol>
</aside>
</body>
</html>
|