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">
|
|
|
|
<title>@if (App::environment() == 'local'){!! "[testing] -"!!}@endif @yield('title'){{ config('app.display_name') }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="stylesheet" href="/assets/frontend/normalize.css">
|
2019-07-26 10:40:56 +01:00
|
|
|
<link rel="stylesheet" href="/assets/app.css">
|
|
|
|
<link rel="stylesheet" href="/assets/highlight/zenburn.css">
|
2019-03-16 21:48:54 +00:00
|
|
|
<link rel="stylesheet" href="https://use.typekit.net/csl8adl.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">
|
|
|
|
<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">
|
|
|
|
<link rel="openid.server" href="https://indieauth.com/openid">
|
|
|
|
<link rel="openid.delegate" href="{{ config('app.url') }}">
|
|
|
|
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
|
|
<link rel="token_endpoint" href="{{ config('app.url') }}/api/token">
|
|
|
|
<link rel="micropub" href="{{ config('app.url') }}/api/post">
|
|
|
|
<link rel="webmention" href="{{ config('app.url') }}/webmention">
|
|
|
|
<link rel="shortcut icon" href="/assets/img/jmb-bw.png">
|
|
|
|
<link rel="pgpkey" href="/assets/jonnybarnes-public-key-ecc.asc">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header id="topheader">
|
|
|
|
<a rel="author" href="/">
|
|
|
|
<h1>{{ config('app.display_name') }}</h1>
|
|
|
|
</a>
|
|
|
|
<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>
|
|
|
|
</nav>
|
|
|
|
</header>
|
2016-05-19 15:01:28 +01:00
|
|
|
|
2017-11-04 12:10:46 +00:00
|
|
|
<main>
|
2016-05-19 15:01:28 +01:00
|
|
|
@yield('content')
|
2017-11-04 12:10:46 +00:00
|
|
|
@section('bio')
|
|
|
|
@show
|
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>
|
|
|
|
<form action="search" method="get">
|
2018-01-16 18:42:38 +00:00
|
|
|
<input type="text" name="terms" title="Search"><button type="submit">Search</button>
|
2017-11-04 12:10:46 +00:00
|
|
|
</form>
|
|
|
|
<p>The code for <code>{{ config('app.longurl') }}</code> can be found on <a href="https://github.com/jonnybarnes/jonnybarnes.uk">GitHub</a>.</p>
|
|
|
|
<p>Built with love: <a href="/colophon">Colophon</a></p>
|
2019-03-16 21:48:54 +00:00
|
|
|
<p><a href="https://indieweb.org"><img src="/assets/img/iwc.svg" alt="Indie Web Camp logo"></a></p>
|
2017-11-04 12:10:46 +00:00
|
|
|
</footer>
|
2019-07-26 10:40:56 +01:00
|
|
|
|
|
|
|
<!--scripts go here when needed-->
|
|
|
|
@section('scripts')
|
|
|
|
@show
|
2019-05-03 21:02:22 +01:00
|
|
|
@if(config('fathom.id'))
|
2019-07-26 10:40:56 +01:00
|
|
|
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
|
|
|
|
<script>
|
|
|
|
(function(f, a, t, h, o, m){
|
|
|
|
a[h]=a[h]||function(){
|
|
|
|
(a[h].q=a[h].q||[]).push(arguments)
|
|
|
|
};
|
|
|
|
o=f.createElement('script'),
|
|
|
|
m=f.getElementsByTagName('script')[0];
|
|
|
|
o.async=1; o.src=t; o.id='fathom-script';
|
|
|
|
m.parentNode.insertBefore(o,m)
|
|
|
|
})(document, window, '//fathom.jonnybarnes.uk/tracker.js', 'fathom');
|
|
|
|
fathom('set', 'siteId', '{{ config('fathom.id') }}');
|
|
|
|
fathom('trackPageview');
|
|
|
|
</script>
|
|
|
|
<!-- / Fathom -->
|
2017-11-04 12:10:46 +00:00
|
|
|
@endif
|
|
|
|
</body>
|
2016-05-19 15:01:28 +01:00
|
|
|
</html>
|