blob: 5fced96cae71253f55ac8564b517c30bf2a83980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php use \Illuminate\Support\Str; ?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}">
</head>
<body>
<div id="main-sidebar-container">
<article class="p-4">@yield('article')</article>
<aside class="p-4 lg:fixed">
<a href="/">Home</a>
@foreach ($page->allTags($posts) as $tag)
<a class="rounded p-1 {{Str::slug($tag) }}" href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
@endforeach
</aside>
</div>
</body>
</html>
|