jonnybarnes.uk/resources/views/master.blade.php
Jonny Barnes bd92f1d6c8 Squashed commit of the following:
commit e29339b2084e4531164a2904869460c4928a6d03
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:35:29 2016 +0000

    Remove algolia credit

commit 2ee543b8d37bcf008a8e82a72202420a48f2b38e
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:34:02 2016 +0000

    Updated and added dependencies

commit 5aba9dda8a8a5c5e9837f409a3991d2d4f4bd8c2
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:29:57 2016 +0000

    Add relavent model options for postgres searching with scout

commit ace894529d12773997336c4acbfe77f157d00eb7
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:28:47 2016 +0000

    Add pgsql scout option

commit 7c794fd35af0ef53d005a8d68d3b99316312536d
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:28:06 2016 +0000

    Add the PostgresEngine service provider

commit 19ba7c2e7d103302209151244ec6a11b3fab3e13
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Tue Dec 6 20:27:09 2016 +0000

    Add the searchable column and index to the notes table
2016-12-06 20:38:52 +00:00

48 lines
1.6 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>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>