diskfloppy.me/resources/views/pages/bookmarks.blade.php

15 lines
495 B
PHP
Raw Normal View History

2023-06-13 22:50:07 +00:00
<?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)
2023-06-14 22:35:47 +00:00
<h1>{{ $category['name'] }}</h1>
2023-06-13 22:50:07 +00:00
<ul>
2023-06-14 22:35:47 +00:00
@foreach ($category['bookmarks'] as $bookmark)
<li><a href="{{ $bookmark['url'] }}">{{ $bookmark['name'] }}</a> - {{ $bookmark['description'] }}</li>
2023-06-13 22:50:07 +00:00
@endforeach
</ul>
@endforeach
@stop