diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-02-26 20:22:39 +0000 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-02-26 20:22:39 +0000 |
| commit | 588aa1b58f49eb7eee453ffba6c7aa2d33171912 (patch) | |
| tree | e02528eb22c53ef1086bafa5e35458515464410c /source/_layouts/master.blade.php | |
| parent | f1b0770740f65e50189cacaa3308a5aaa8be8560 (diff) | |
Add responsive grid layout
Diffstat (limited to 'source/_layouts/master.blade.php')
| -rw-r--r-- | source/_layouts/master.blade.php | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php index 7c1cedf..1735738 100644 --- a/source/_layouts/master.blade.php +++ b/source/_layouts/master.blade.php @@ -4,13 +4,15 @@ <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> + <div id="main-sidebar-container"> + <article>@yield('article')</article> + <aside> + <ol> + @foreach ($page->allCategories($posts) as $category) + <li><a href="/categories/{{ $category }}">{{ $category }}</a></li> + @endforeach + </ol> + </aside> + </div> </body> </html> |
