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

15 lines
485 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)
<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