2017-11-04 12:10:46 +00:00
|
|
|
<!doctype html>
|
2016-05-19 15:01:28 +01:00
|
|
|
<html lang="en-GB">
|
2017-11-04 12:10:46 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2023-09-25 18:31:38 +01:00
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2023-06-11 16:52:37 +01:00
|
|
|
<title>@yield('title'){{ config('app.name') }}</title>
|
2019-07-26 10:40:56 +01:00
|
|
|
<link rel="stylesheet" href="/assets/highlight/zenburn.css">
|
2023-12-21 17:57:48 +00:00
|
|
|
<link rel="stylesheet" href="/assets/css/app.css">
|
2017-11-04 12:10:46 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="Blog RSS Feed" href="/blog/feed.rss">
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="Blog Atom Feed" href="/blog/feed.atom">
|
|
|
|
<link rel="alternate" type="application/json" title="Blog JSON Feed" href="/blog/feed.json">
|
2020-06-20 16:49:42 +01:00
|
|
|
<link rel="alternate" type="application/jf2feed+json" title="Blog JF2 Feed" href="/blog/feed.jf2">
|
2017-11-04 12:10:46 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="Notes RSS Feed" href="/notes/feed.rss">
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="Notes Atom Feed" href="/notes/feed.atom">
|
|
|
|
<link rel="alternate" type="application/json" title="Notes JSON Feed" href="/notes/feed.json">
|
2020-06-20 16:49:42 +01:00
|
|
|
<link rel="alternate" type="application/jf2feed+json" title="Notes JF2 Feed" href="/blog/feed.jf2">
|
2017-11-04 12:10:46 +00:00
|
|
|
<link rel="openid.server" href="https://indieauth.com/openid">
|
|
|
|
<link rel="openid.delegate" href="{{ config('app.url') }}">
|
2024-06-08 19:39:09 +01:00
|
|
|
<link rel="indieauth-metadata" href="{{ config('app.url') }}/.well-known/indieauth-server">
|
|
|
|
<link rel="authorization_endpoint" href="{{ config('app.url') }}/auth }}">
|
|
|
|
<link rel="token_endpoint" href="{{ config('app.url') }}/token">
|
2017-11-04 12:10:46 +00:00
|
|
|
<link rel="micropub" href="{{ config('app.url') }}/api/post">
|
|
|
|
<link rel="webmention" href="{{ config('app.url') }}/webmention">
|
2023-02-08 19:36:24 +00:00
|
|
|
<link rel="shortcut icon" href="{{ config('app.url') }}/assets/img/memoji-orange-bg-small-fs8.png">
|
2017-11-04 12:10:46 +00:00
|
|
|
<link rel="pgpkey" href="/assets/jonnybarnes-public-key-ecc.asc">
|
|
|
|
</head>
|
2023-02-08 19:36:24 +00:00
|
|
|
<body class="grid">
|
|
|
|
<header id="site-header">
|
2020-02-21 18:57:44 +00:00
|
|
|
<h1>
|
2023-06-11 16:52:37 +01:00
|
|
|
<a rel="author" href="/">{{ config('user.display_name') }}</a>
|
2020-02-21 18:57:44 +00:00
|
|
|
</h1>
|
2017-11-04 12:10:46 +00:00
|
|
|
<nav>
|
|
|
|
<a href="/">All</a>
|
|
|
|
<a href="/notes">Notes</a>
|
|
|
|
<a href="/blog">Articles</a>
|
|
|
|
<a href="/bookmarks">Bookmarks</a>
|
|
|
|
<a href="/likes">Likes</a>
|
|
|
|
<a href="/contacts">Contacts</a>
|
|
|
|
<a href="/projects">Projects</a>
|
2023-12-19 17:12:49 +00:00
|
|
|
<a href="/notes/feed.json" class="rss-icon">@include('icons.rss', ['title' => 'RSS Feed'])</a>
|
2017-11-04 12:10:46 +00:00
|
|
|
</nav>
|
|
|
|
</header>
|
2016-05-19 15:01:28 +01:00
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
<main>
|
2023-04-11 16:16:05 +01:00
|
|
|
@yield('content')
|
|
|
|
|
|
|
|
@isset($bio)
|
|
|
|
{!! $bio !!}
|
|
|
|
@endisset
|
2019-03-16 21:48:54 +00:00
|
|
|
</main>
|
2016-11-22 16:08:02 +00:00
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
<footer>
|
2023-10-27 20:22:40 +01:00
|
|
|
<div class="footer-actions">
|
2023-12-02 14:37:03 +00:00
|
|
|
<search>
|
|
|
|
<form action="/search" method="get">
|
|
|
|
<label for="search" class="sr-only">Search</label>
|
|
|
|
<input type="search" id="search" name="q" title="Search"><button type="submit">Search</button>
|
|
|
|
</form>
|
|
|
|
</search>
|
2023-10-27 20:22:40 +01:00
|
|
|
@auth()
|
|
|
|
<a href="/logout" class="auth">Logout</a>
|
|
|
|
@else
|
|
|
|
<a href="/login" class="auth">Login</a>
|
|
|
|
@endauth
|
|
|
|
</div>
|
2017-11-04 12:10:46 +00:00
|
|
|
<p>Built with love: <a href="/colophon">Colophon</a></p>
|
2020-02-21 18:26:52 +00:00
|
|
|
<a href="https://indieweb.org"><img src="/assets/img/iwc.svg" alt="Indie Web Camp logo" class="iwc-logo"></a>
|
2017-11-04 12:10:46 +00:00
|
|
|
</footer>
|
2019-07-26 10:40:56 +01:00
|
|
|
|
|
|
|
<!--scripts go here when needed-->
|
|
|
|
@section('scripts')
|
2023-12-21 17:57:48 +00:00
|
|
|
<script type="module" src="/assets/js/app.js"></script>
|
2019-07-26 10:40:56 +01:00
|
|
|
@show
|
2017-11-04 12:10:46 +00:00
|
|
|
</body>
|
2016-05-19 15:01:28 +01:00
|
|
|
</html>
|