blob: f21528fc340274f2f4cd7e814c8771aa0cfe35d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|