2016-05-19 15:01:28 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-GB">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2016-12-10 11:48:17 +00:00
|
|
|
<title>@if (App::environment() == 'local'){!! "[testing] -"!!}@endif @yield('title'){{ env('DISPLAY_NAME') }}</title>
|
2016-05-19 15:01:28 +01:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2016-11-22 16:08:02 +00:00
|
|
|
<link rel="stylesheet" href="/assets/frontend/normalize.css">
|
|
|
|
<link rel="stylesheet" href="/assets/css/app.css">
|
2016-05-19 15:01:28 +01:00
|
|
|
<link rel="openid.server" href="https://indieauth.com/openid">
|
2016-12-10 11:48:17 +00:00
|
|
|
<link rel="openid.delegate" href="{{ config('app.url') }}">
|
2016-05-19 15:01:28 +01:00
|
|
|
<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="/">
|
2016-12-10 11:48:17 +00:00
|
|
|
<h1>{{ env('DISPLAY_NAME') }}</h1>
|
2016-05-19 15:01:28 +01:00
|
|
|
</a>
|
|
|
|
<nav>
|
|
|
|
<a href="/blog">Articles</a>
|
|
|
|
<a href="/notes">Notes</a>
|
|
|
|
<a href="/projects">Projects</a>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
@yield('content')
|
|
|
|
</main>
|
2016-11-22 16:08:02 +00:00
|
|
|
@section('bio')
|
|
|
|
@show
|
|
|
|
|
2016-05-19 15:01:28 +01:00
|
|
|
@section('scripts')
|
|
|
|
<!--scripts go here when needed-->
|
|
|
|
@show
|
|
|
|
|
2016-11-22 20:24:12 +00:00
|
|
|
<footer>
|
2016-11-25 19:51:42 +00:00
|
|
|
<form action="search" method="get">
|
|
|
|
<input type="text" name="terms"><button type="submit">Search</button>
|
|
|
|
</form>
|
2016-11-22 20:24:12 +00:00
|
|
|
<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>
|
2016-12-10 12:23:59 +00:00
|
|
|
<p><a href="https://indieweb.org"><img src="/assets/img/iwc.png" alt="Indie Web Camp logo" class="iwc-logo"></a></p>
|
2016-11-22 20:24:12 +00:00
|
|
|
</footer>
|
2017-02-15 14:23:43 +00:00
|
|
|
@if (config('app.piwik') === true)
|
|
|
|
<!-- Piwik -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _paq = _paq || [];
|
|
|
|
// tracker methods like "setCustomDimension" should be called before "trackPageView"
|
|
|
|
_paq.push(['trackPageView']);
|
|
|
|
_paq.push(['enableLinkTracking']);
|
|
|
|
(function() {
|
|
|
|
var u="https://analytics.jmb.lv/";
|
|
|
|
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
|
|
|
_paq.push(['setSiteId', '1']);
|
|
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<!-- End Piwik Code -->
|
|
|
|
@endif
|
2016-05-19 15:01:28 +01:00
|
|
|
</body>
|
|
|
|
</html>
|