This commit is contained in:
floppydiskette 2023-08-14 23:45:31 +01:00
parent e7d58f3185
commit b8b36c50d0
No known key found for this signature in database
5 changed files with 52 additions and 14 deletions

View file

@ -5,7 +5,7 @@
return [ return [
'name' => env('APP_NAME', 'diskfloppy.me'), 'name' => env('APP_NAME', 'diskfloppy.me'),
'version' => '5.5.0', 'version' => '6.0',
'env' => env('APP_ENV', 'production'), 'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false), 'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'), 'url' => env('APP_URL', 'http://localhost'),

View file

@ -8,6 +8,7 @@ body {
margin: 0; margin: 0;
color: var(--foreground); color: var(--foreground);
background-color: var(--background); background-color: var(--background);
text-align: left;
} }
html { html {
@ -436,3 +437,12 @@ table.infotable tr td small {
.hljs { .hljs {
background: none !important; background: none !important;
} }
.me img {
float: right;
margin: 5px;
}
.me p {
text-align: justify;
}

View file

@ -13,5 +13,5 @@
alt="Valid HTML 4.01!"><br> alt="Valid HTML 4.01!"><br>
This site is best viewed at 1024x768 with 16-bit color or better<br> This site is best viewed at 1024x768 with 16-bit color or better<br>
&copy; floppydisk 2021-{{ date('Y') }}, Site Version {{ config('app.version') }}, <a &copy; floppydisk 2021-{{ date('Y') }}, Site Version {{ config('app.version') }}, <a
href="https://github.com/floppydisk05/diskfloppy.me">GitHub</a><br> href="https://github.com/floppydisk05/diskfloppy.me">Source</a><br>
</div> </div>

View file

@ -2,8 +2,36 @@
@section('title', 'Home') @section('title', 'Home')
@section('description', 'This is the personal homepage of floppydisk.') @section('description', 'This is the personal homepage of floppydisk.')
@section('content') @section('content')
<p>Hi! This my personal homepage on the <strong>W</strong>orld <strong>W</strong>ide <strong>W</strong>eb. <div class="me">
</p> <img src="{{ URL::asset('images/me_200x200.jpg') }}" alt="Me">
<p>Hi! This my personal homepage on the <strong>W</strong>orld <strong>W</strong>ide <strong>W</strong>eb.
</div>
<table class="infotable">
<tr>
<td>
<h1>Fun Facts</h1>
</td>
</tr>
<tr>
<td>
<hr>
</td>
</tr>
<tr>
<td>&#9670; I am (unfortunately) British</td>
</tr>
<tr>
<td>&#9670; I watched the entirety of The Owl House (~18 hours) in under 48 hours.</td>
</tr>
<tr>
<td>&#9670; I spend way too much time on my computer.</td>
</tr>
<tr>
<td>&#9670; Some people say I suck at PHP, but that's clearly wrong :P</td>
</tr>
</table>
<br>
<table class="infotable"> <table class="infotable">
<tr> <tr>

View file

@ -8,7 +8,7 @@
$api_root = app('config')->get('app')['api_root']; $api_root = app('config')->get('app')['api_root'];
$current_track = json_decode(file_get_contents($api_root . '/lastfm/current')); $current_track = json_decode(file_get_contents($api_root . '/lastfm/current'));
$toptracks = json_decode(file_get_contents($api_root . '/lastfm/top')); $top_tracks = json_decode(file_get_contents($api_root . '/lastfm/top'));
$count = 0; $count = 0;
@endphp @endphp
<table class="infotable"> <table class="infotable">
@ -32,24 +32,24 @@
<h2>Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)</h2> <h2>Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)</h2>
</td> </td>
</tr> </tr>
<tr"> <tr
<td style="text-align: right"><b>#</b></td> ">
<td><b>Track</b></td> <td style="text-align: right"><b>#</b></td>
<td><b>Artist</b></td> <td><b>Track</b></td>
<td><b>Plays</b></td> <td><b>Artist</b></td>
<td><b>Plays</b></td>
</tr> </tr>
@foreach ($toptracks as $track) @foreach ($top_tracks as $track)
@php $count++ @endphp @php $count++ @endphp
@if ($count >= $cfg['toptracks']) @if ($count >= $cfg['toptracks']+1)
@break @break
@endif @endif
<tr> <tr>
<td style="text-align: right">{{ $count+1 }}</td> <td style="text-align: right">{{ $count }}</td>
<td>{{ $track->name }}</td> <td>{{ $track->name }}</td>
<td>{{ $track->artist }}</td> <td>{{ $track->artist }}</td>
<td>{{ $track->plays }}</td> <td>{{ $track->plays }}</td>
</tr> </tr>
@endforeach @endforeach
</table> </table>
<hr>
@stop @stop