diff options
Diffstat (limited to 'source/_layouts')
| -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>  | 
