Merge branch 'release/0.0.16.1'

This commit is contained in:
Jonny Barnes 2016-11-22 20:25:00 +00:00
commit 97d79b9cce
10 changed files with 61 additions and 4 deletions

View file

@ -1,5 +1,10 @@
# Changelog
## Version 0.0.16.1 (2016-11-22)
- Break words
- Added a footer to all pages
- Added a colophon page
## Version 0.0.16 (2016-11-22)
- Much simpler website design
- Update mapbox to use Mapbox GL JS, things can be improved

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View file

@ -5,6 +5,7 @@ body {
margin: 0 auto;
padding-left: 5px;
padding-right: 5px;
word-wrap: break-word;
}
#topheader {

View file

@ -23,6 +23,7 @@ a {
width: auto;
}
code {
word-wrap: break-word;
footer {
font-size: 0.5rem;
text-align: center;
}

View file

@ -0,0 +1,41 @@
@extends('master')
@section('title')Colophon for Jonny Barnes.uk @stop
@section('content')
<h2>Colophon</h2>
<p>
This website is written in PHP using the
<a href="https://laravel.com">Laravel 5.3</a> framework. It is designed with
various <a href="https://indieweb.org">IndieWeb</a> principles in mind.
</p>
<h3>IndieWeb</h3>
<ul>
<li><a href="https://microformats.org/wiki/microformats2">Microformats2</a></li>
<ul>
<li>h-entry for indiviual notes</li>
<li>h-card for people an venues</li>
<li>h-feed for the notes feed</li>
</ul>
<li><a href="https://indieweb.org/POSSE">
<abbr title="Publish on Own Site, Syndicate Elsewhere">POSSE</abbr></a></li>
<li><a href="https://micropub.net/draft/">Micropub</a>, currently just
creating</li>
<li><a href="https://indieweb.org/webmention">WebMention</a>, both sending
and receiving</li>
<li><a href="https://indieweb.org/backfeed">Backfeed</a> of silo content,
this is enabled by the webmention support. The data is provided by the
excellent <a href="https://brid.gy">Bridgy</a></li>
<li><a href="https://indieauth.com">IndieAuth</a> authorisation with
<code><a href="https://indieweb.org/rel-me">rel=me</a></code></li>
</ul>
<h3>Security</h3>
<p>The connection to this site is being encrypted using TLSv1.2 and ciphers that
support <a href="https://en.wikipedia.org/wiki/Forward_Secrecy">Forward
Secrecy</a>. See the
<a href="https://www.ssllabs.com/ssltest/analyze.html?d=jonnybarnes.uk">
SSL Labs result</a>. The encryption uses a certifiate issued by the
<abbr title="Certificate Authority">CA</abbr>
<a href="https://letsencrypt.org">Lets Encrypt</a>.</p>
@stop

View file

@ -37,5 +37,9 @@
<!--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>

View file

@ -19,6 +19,11 @@ Route::group(['domain' => config('url.longurl')], function () {
return view('projects');
});
//Static colophon page
Route::get('colophon', function () {
return view('colophon');
});
//The login routes to get authe'd for admin
Route::get('login', ['as' => 'login', function () {
return view('login');