Squashed commit of the following: commit edc3e917d710f34c2ac487474db37a8acf2134c9 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Nov 25 19:51:32 2016 +0000 Update changelog commit 78668c68557c4121bf4b8862b76102ac87c81787 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Nov 25 19:50:39 2016 +0000 Add the search feature commit dfe8447dcb236e03a7870f40e53a4276fc06e580 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Nov 25 19:26:23 2016 +0000 Add a search form in the footer commit 626b0124653d9697e1ac6d3424805af41546ba17 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Nov 25 18:00:38 2016 +0000 Installing/setting up scout commit 52d7d7e7e058247fa73963b4dd45aa8649df4b9f Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Nov 25 17:50:56 2016 +0000 Add search dependencies
49 lines
1.7 KiB
PHP
49 lines
1.7 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>
|
|
<form action="search" method="get">
|
|
<input type="text" name="terms"><button type="submit">Search</button>
|
|
</form>
|
|
<p class="algolia-credit">Search powered by </p><img class="algolia-image" src="/assets/img/algolia.svg">
|
|
<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>
|