diff options
Diffstat (limited to 'source/_layouts')
| -rw-r--r-- | source/_layouts/master.blade.php | 2 | ||||
| -rw-r--r-- | source/_layouts/post.blade.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php index 7a2d77d..bf6fc3d 100644 --- a/source/_layouts/master.blade.php +++ b/source/_layouts/master.blade.php @@ -16,7 +16,7 @@ <link href="/feed.atom" type="application/atom+xml" rel="alternate" title="{{ $page->siteName }} Atom Feed"> <link rel="stylesheet" href="{{ mix('css/main.css', 'assets/build') }}"> </head> - <body> + <body class="text-lg"> <div id="main-sidebar-container"> <article class="p-4">@yield('article')</article> <aside class="p-4 pt-8 lg:fixed text-center"> diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php index cbd4511..49ca172 100644 --- a/source/_layouts/post.blade.php +++ b/source/_layouts/post.blade.php @@ -18,6 +18,8 @@ </div> </div> </header> - @yield('content') + <section class="post-content"> + @yield('content') + </section> @endsection |
