Merge branch 'release/0.0.16.1'
This commit is contained in:
commit
97d79b9cce
10 changed files with 61 additions and 4 deletions
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# 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)
|
## Version 0.0.16 (2016-11-22)
|
||||||
- Much simpler website design
|
- Much simpler website design
|
||||||
- Update mapbox to use Mapbox GL JS, things can be improved
|
- Update mapbox to use Mapbox GL JS, things can be improved
|
||||||
|
|
2
public/assets/css/app.css
vendored
2
public/assets/css/app.css
vendored
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
1
resources/assets/sass/layout.scss
vendored
1
resources/assets/sass/layout.scss
vendored
|
@ -5,6 +5,7 @@ body {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
#topheader {
|
#topheader {
|
||||||
|
|
5
resources/assets/sass/styles.scss
vendored
5
resources/assets/sass/styles.scss
vendored
|
@ -23,6 +23,7 @@ a {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
footer {
|
||||||
word-wrap: break-word;
|
font-size: 0.5rem;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
41
resources/views/colophon.blade.php
Normal file
41
resources/views/colophon.blade.php
Normal 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">Let’s Encrypt</a>.</p>
|
||||||
|
|
||||||
|
@stop
|
|
@ -37,5 +37,9 @@
|
||||||
<!--scripts go here when needed-->
|
<!--scripts go here when needed-->
|
||||||
@show
|
@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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -19,6 +19,11 @@ Route::group(['domain' => config('url.longurl')], function () {
|
||||||
return view('projects');
|
return view('projects');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//Static colophon page
|
||||||
|
Route::get('colophon', function () {
|
||||||
|
return view('colophon');
|
||||||
|
});
|
||||||
|
|
||||||
//The login routes to get authe'd for admin
|
//The login routes to get authe'd for admin
|
||||||
Route::get('login', ['as' => 'login', function () {
|
Route::get('login', ['as' => 'login', function () {
|
||||||
return view('login');
|
return view('login');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue