diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-13 23:07:20 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-06-14 22:15:44 +0100 |
commit | 8e627b16712e90134919c7366dffa4993a13165a (patch) | |
tree | 63517d53c74594189cc46857bdbd06decbaac5f2 /resources/views/pages | |
parent | a464ef4c0e3ce235fb1da70dfb282449beeeac80 (diff) |
Add global layout and homepage
Diffstat (limited to 'resources/views/pages')
-rw-r--r-- | resources/views/pages/home.blade.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/resources/views/pages/home.blade.php b/resources/views/pages/home.blade.php new file mode 100644 index 0000000..f21528f --- /dev/null +++ b/resources/views/pages/home.blade.php @@ -0,0 +1,25 @@ +@extends('layouts.default') +@section('title', 'test') +@section('description', 'This is the personal homepage of floppydisk.') +@section('content') +<p>Hi!</p> + <p>This is the personal homepage of floppydisk.</p> + + <!-- Last.fm --> + @include('components.lastfm') + + <!-- WeatherData --> + @include('components.weatherdata') + + <h1>Contact</h1> + <p><strong>Mail</strong>: <a href="mailto:contact@diskfloppy.me">contact@diskfloppy.me</a><br/> + <strong>IRC</strong>: <a href="https://r-type.ca/page.php?id=1034">floppydisk @ r-type</a><br/> + </p> + + <h1>Elsewhere</h1> + <p><strong>Mastodon:</strong> <a rel="me" href="https://mastodon.sdf.org/@floppydisk_">@floppydisk_@mastodon.sdf.org</a><br/> + <strong>Twitter:</strong> <a href="https://twitter.com/floppydisk__">@floppydisk__</a><br/> + <strong>GitHub:</strong> <a href="https://github.com/floppydisk05">floppydisk05</a><br/> + <strong>SDF:</strong> <a href="http://floppydisk.sdf.org/">~floppydisk</a> + </p> +@stop |