summaryrefslogtreecommitdiff
path: root/source/_layouts/master.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'source/_layouts/master.blade.php')
-rw-r--r--source/_layouts/master.blade.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php
index 5fced96..9b1deda 100644
--- a/source/_layouts/master.blade.php
+++ b/source/_layouts/master.blade.php
@@ -9,10 +9,11 @@
<body>
<div id="main-sidebar-container">
<article class="p-4">@yield('article')</article>
- <aside class="p-4 lg:fixed">
- <a href="/">Home</a>
+ <aside class="p-4 pt-8 lg:fixed text-center">
+ <h1 class="text-3xl font-bold"><a href="/">davidtsadler.com</a></h1>
+ <p class="mb-4">My little bit of the internet</p>
@foreach ($page->allTags($posts) as $tag)
- <a class="rounded p-1 {{Str::slug($tag) }}" href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
+ <a class="inline-block rounded p-1 mt-4 {{Str::slug($tag) }}" href="/tags/{{ Str::slug($tag) }}">{{ $tag }}</a>
@endforeach
</aside>
</div>