diff options
Diffstat (limited to 'source/_layouts')
| -rw-r--r-- | source/_layouts/master.blade.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php index 3c34cff..d215d03 100644 --- a/source/_layouts/master.blade.php +++ b/source/_layouts/master.blade.php @@ -2,14 +2,16 @@ <!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 class="px-8 lg:px-16 xl:px-32 bg-gray-900"> + <body class="mb-8 lg:px-16 xl:px-32 bg-gray-900"> <div id="main-sidebar-container"> <article>@yield('article')</article> - <aside> - <p class="py-4 text-gray-200"> - <a class="block" href="/"><svg class="inline-block fill-current w-4 h-4"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8 20H3V10H0L10 0l10 10h-3v10h-5v-6H8v6z"/></svg> Home</a> + <aside class="px-4"> + <p class="py-4 text-gray-200 text-2xl"> + <a class="block" href="/"><svg class="inline-block fill-current w-5 h-5"xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8 20H3V10H0L10 0l10 10h-3v10h-5v-6H8v6z"/></svg> Home</a> </p> @foreach ($page->allCategories($posts) as $category) <a class="rounded p-1 text-gray-200 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a> |
