materialize grid

This commit is contained in:
Le Libre Au Quotidien 2020-10-25 18:46:23 +01:00
parent 862c752c9a
commit 1e04bf7e9f
1 changed files with 2 additions and 5 deletions

View File

@ -1,10 +1,8 @@
@extends('master') @extends('master')
@section('body') @section('body')
<div id="choicebox"> <div class="row center">
<h1> {{ $category->name }}</h1> <h1> {{ $category->name }}</h1>
<div class="row"> <div class="col xl9 l9 m9 s12">
<div class="col-s9">
@foreach ($category->contents as $content) @foreach ($category->contents as $content)
<a class="waves-effect waves-light btn-large" href="/content/{{ $content->href }}"> <a class="waves-effect waves-light btn-large" href="/content/{{ $content->href }}">
@ -18,5 +16,4 @@
@endforeach @endforeach
</div> </div>
</div> </div>
</div>
@endsection @endsection