diff options
Diffstat (limited to 'resources/views/pages/bookmarks.blade.php')
-rw-r--r-- | resources/views/pages/bookmarks.blade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/pages/bookmarks.blade.php b/resources/views/pages/bookmarks.blade.php index b0fc464..331d9fb 100644 --- a/resources/views/pages/bookmarks.blade.php +++ b/resources/views/pages/bookmarks.blade.php @@ -4,8 +4,8 @@ @section('description', 'This is the personal homepage of floppydisk.') @section('content') @foreach ($categories as $category) - <h1>{{ $category['name'] }}</h1> - <ul> + <h1>{{ $category['name'] }}</h1> + <ul> @foreach ($category['bookmarks'] as $bookmark) <li><a href="{{ $bookmark['url'] }}">{{ $bookmark['name'] }}</a> - {{ $bookmark['description'] }}</li> @endforeach |