diff --git a/changelog.md b/changelog.md index 3ea0c7fc..df0be63b 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,7 @@ ## Version {next} - Allow place `slug`s to be re-generated - Add syndication links for swarm and instagram + - Move bio to its own template, next step database? ## Version 0.5.15 (2017-06-17) - Add support for ownyourgram.com sending h-card locations diff --git a/resources/views/notes/index.blade.php b/resources/views/notes/index.blade.php index 26ae8b56..b892d27e 100644 --- a/resources/views/notes/index.blade.php +++ b/resources/views/notes/index.blade.php @@ -28,20 +28,4 @@ Notes « @stop -@section('bio') - @if ($homepage === true) -
-

My name is Jonny Barnes, and jonnybarnes.uk is my site. I’m from Manchester, UK.

-

I am active to varying degrees on several silos:

- -

My usual online nickname is normally jonnybarnes for other services. Here’s a profile pic. I also have a PGP key, with fingerprint. You can email me at jonny at my domain, or message me on XMPP using the same address.

-
- @endif -@stop +@if ($homepage === true)@include('templates.bio')@endif diff --git a/resources/views/templates/bio.blade.php b/resources/views/templates/bio.blade.php new file mode 100644 index 00000000..4c448f41 --- /dev/null +++ b/resources/views/templates/bio.blade.php @@ -0,0 +1,15 @@ +@section('bio') +
+

My name is Jonny Barnes, and jonnybarnes.uk is my site. I’m from Manchester, UK.

+

I am active to varying degrees on several silos:

+ +

My usual online nickname is normally jonnybarnes for other services. Here’s a profile pic. I also have a PGP key, with fingerprint. You can email me at jonny at my domain, or message me on XMPP using the same address.

+
+@stop