commit 57a28f72e6e2121bfd705b4f6b8386ec9738919a Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 20:23:59 2016 +0000 Updated changelog commit 8f0f4023faa7642a630f10d4db2e9e2ab0ad0752 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 20:23:20 2016 +0000 Initial colophon commit e50a91d33dc5fb1a7af9356fd36c8bd0f1345361 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:23:42 2016 +0000 Output of gulp sass && gulp compress commit e33aea1e85e4b82e0c8848f41de174a61974d9ec Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:23:11 2016 +0000 Style the footer commit e80a43d3795209f834bd67b9501f54ef83861b7a Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Tue Nov 22 17:22:33 2016 +0000 Add footer
45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en-GB">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>@if (App::environment() == 'local'){!! "[testing] -"!!}@endif @yield('title')</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="/assets/frontend/normalize.css">
|
|
<link rel="stylesheet" href="/assets/css/app.css">
|
|
<link rel="openid.server" href="https://indieauth.com/openid">
|
|
<link rel="openid.delegate" href="https://jonnybarnes.uk">
|
|
<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>Jonny Barnes</h1>
|
|
</a>
|
|
<nav>
|
|
<a href="/blog">Articles</a>
|
|
<a href="/notes">Notes</a>
|
|
<a href="/projects">Projects</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
@yield('content')
|
|
</main>
|
|
@section('bio')
|
|
@show
|
|
|
|
@section('scripts')
|
|
<!--scripts go here when needed-->
|
|
@show
|
|
|
|
<footer>
|
|
<p>The code for <code>{{ env('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>
|
|
</footer>
|
|
</body>
|
|
</html>
|