diff options
Diffstat (limited to 'resources/views/pages/bookmarks.blade.php')
-rw-r--r-- | resources/views/pages/bookmarks.blade.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/resources/views/pages/bookmarks.blade.php b/resources/views/pages/bookmarks.blade.php new file mode 100644 index 0000000..e7630c7 --- /dev/null +++ b/resources/views/pages/bookmarks.blade.php @@ -0,0 +1,14 @@ +<?php $categories = app('config')->get('bookmarks'); ?> +@extends('layouts.default') +@section('title', 'bookmarks') +@section('description', 'This is the personal homepage of floppydisk.') +@section('content') +@foreach ($categories as $category) + <h1>{{ $category->name }}</h1> + <ul> + @foreach ($category->bookmarks as $bookmark) + <li><a href="{{ $bookmark->url }}">{{ $bookmark->name }}</a> - {{ $bookmark->description }}</li> + @endforeach + </ul> +@endforeach +@stop |