Mirrors the existing Bio singleton pattern: a new `about` table/model, admin CRUD at /admin/about, and a public page at /about linked from both the header nav and the admin homepage. Content is wrapped in .e-content so it lays out correctly within the site's CSS grid. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013bzYwaDD8p3XNDMYKvXKrs
74 lines
1.8 KiB
PHP
74 lines
1.8 KiB
PHP
@extends('master')
|
|
|
|
@section('title')Admin CP « @stop
|
|
|
|
@section('content')
|
|
<h1>Hello {{ $name }}!</h1>
|
|
|
|
<h2>Articles</h2>
|
|
<p>
|
|
You can either <a href="/admin/blog/create">create</a> new blog posts,
|
|
or <a href="/admin/blog/">edit</a> them.
|
|
<p>
|
|
|
|
<h2>Notes</h2>
|
|
<p>
|
|
You can either <a href="/admin/notes/create">create</a> new notes,
|
|
or <a href="/admin/notes/">edit</a> them.
|
|
<p>
|
|
|
|
<h2>Likes</h2>
|
|
<p>
|
|
You can either <a href="/admin/likes/create">create</a> a new like,
|
|
or <a href="/admin/likes/">edit</a> them.
|
|
<p>
|
|
|
|
<h2>Clients</h2>
|
|
<p>
|
|
You can either <a href="/admin/clients/create">create</a> new client names,
|
|
or <a href="/admin/clients/">edit</a> them.
|
|
</p>
|
|
|
|
<h2>Contacts</h2>
|
|
<p>
|
|
You can either <a href="/admin/contacts/create">create</a> new contacts,
|
|
or <a href="/admin/contacts/">edit</a> them.
|
|
</p>
|
|
|
|
<h2>Places</h2>
|
|
<p>
|
|
You can either <a href="/admin/places/create">create</a> new places,
|
|
or <a href="/admin/places/">edit</a> them.
|
|
</p>
|
|
|
|
<h2>Syndication</h2>
|
|
<p>
|
|
You can either <a href="/admin/syndication/create">create</a> new syndication targets,
|
|
or <a href="/admin/syndication">edit</a> them.
|
|
</p>
|
|
|
|
<h2>Tokens</h2>
|
|
<p>
|
|
View and <a href="/admin/tokens">revoke</a> issued Micropub tokens.
|
|
</p>
|
|
|
|
<h2>Bio</h2>
|
|
<p>
|
|
Edit your <a href="/admin/bio">bio</a>.
|
|
</p>
|
|
|
|
<h2>About</h2>
|
|
<p>
|
|
Edit your <a href="/admin/about">about page</a>.
|
|
</p>
|
|
|
|
<h2>Passkeys</h2>
|
|
<p>
|
|
Manager <a href="/admin/passkeys">your passkeys</a>.
|
|
</p>
|
|
|
|
<h2>Settings</h2>
|
|
<p>
|
|
Edit <a href="/admin/settings">site settings</a>.
|
|
</p>
|
|
@stop
|