diff options
author | Frankie B <git@diskfloppy.me> | 2024-01-22 01:18:12 +0000 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-01-22 01:19:24 +0000 |
commit | 42bb5228d50e212208a610a7dbf8b8726a17d2ed (patch) | |
tree | 5f788f9c3998d8bc4d0a37c3a6e83644bca65d04 /resources/views | |
parent | 6fa9efcc74a9c36f9e2178ee5427eafb8d470d99 (diff) |
Remove unused HLJS code and unnecessary components
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/components/codeblock.blade.php | 14 | ||||
-rw-r--r-- | resources/views/components/lastfm.blade.php | 21 | ||||
-rw-r--r-- | resources/views/components/weather.blade.php | 22 | ||||
-rw-r--r-- | resources/views/includes/head-hljs.blade.php | 15 | ||||
-rw-r--r-- | resources/views/layouts/default-hljs.blade.php | 23 |
5 files changed, 0 insertions, 95 deletions
diff --git a/resources/views/components/codeblock.blade.php b/resources/views/components/codeblock.blade.php deleted file mode 100644 index ff7c2a5..0000000 --- a/resources/views/components/codeblock.blade.php +++ /dev/null @@ -1,14 +0,0 @@ -@php -$file_path = "code/".$file; -$file_name = basename($file_path); - -$hl = new \Highlight\Highlighter(); - -$highlighted = $hl->highlight($lang, Storage::disk('local')->get($file_path)); -$file_size = Storage::disk('local')->size($file_path); -@endphp -<div class="code-block"> - <h1>{{ $file_name }} <small>{{ $file_size}} bytes</small></h1> - <hr> - <code class="hljs {{$highlighted->language}}">{!! $highlighted->value !!}</code> -</div> diff --git a/resources/views/components/lastfm.blade.php b/resources/views/components/lastfm.blade.php deleted file mode 100644 index 83312e1..0000000 --- a/resources/views/components/lastfm.blade.php +++ /dev/null @@ -1,21 +0,0 @@ -@php - -$cfg = app('config')->get('services')['lastfm']; -$api_root = app('config')->get('app')['api_root']; - -$current_track = json_decode(file_get_contents($api_root.'/lastfm/current')); -$toptracks = json_decode(file_get_contents($api_root.'/lastfm/top')); -$count = 0; -@endphp - -<h1>Last.fm <small>(<a href="https://www.last.fm/user/{{ $cfg['user']}}">Profile</a>)</small></h1> - <b>Last/Current Track:</b> <a href="{{ $current_track->url }}">{{ $current_track->name }} • {{ $current_track->artist }}</a> - <h2>Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)</h2> -@foreach ($toptracks as $track) - @if ($count >= $cfg['toptracks']) - @break - @endif - {{ str_pad($count+1, 2, '0', STR_PAD_LEFT) }}] <a href="{{ $track->url }}">{{ $track->name }} • {{ $track->artist }}</a> - <small>({{ $track->plays }} plays)</small><br> -@php $count++ @endphp -@endforeach diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php deleted file mode 100644 index 29f925d..0000000 --- a/resources/views/components/weather.blade.php +++ /dev/null @@ -1,22 +0,0 @@ -@php -$api_root = app('config')->get('app')['api_root']; - -function degreesToCompassDirection($degrees) { - $cardinalDirections = [ - 'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', - 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N' - ]; - return $cardinalDirections[round($degrees*16/360)]; -} - -$data = json_decode(file_get_contents($api_root.'/weather')); -$updated = gmdate('H:i Y-m-d', $data->updated); -$data = $data->current; -@endphp - -<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1> - <b>Wind Speed:</b> {{ $data->wind->speed }} mph<br> - <b>Wind Direction:</b> {{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}<br> - <b>Temperature:</b> {{ $data->temperature }}°C<br> - <b>Rain Rate:</b> {{ $data->rain_rate }} mm/hr<br> - <b>Humidity:</b> {{ $data->humidity }}%<br> diff --git a/resources/views/includes/head-hljs.blade.php b/resources/views/includes/head-hljs.blade.php deleted file mode 100644 index dec0126..0000000 --- a/resources/views/includes/head-hljs.blade.php +++ /dev/null @@ -1,15 +0,0 @@ - <!-- Global --> - <meta charset="utf-8"> - <meta property="og:type" content="website"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta name="theme-color" content="#333333"> - <link rel="stylesheet" href="{{ URL::asset ('css/master.css') }}"/> - <link rel="stylesheet" href="{{ URL::asset ('css/highlight/tomorrow-night-bright.css') }}"/> - <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32"/> - <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16"/> - - <!-- Page-specific --> - <title>@yield('title') - diskfloppy.me</title> - <meta property="og:title" content="diskfloppy.me | @yield('title')"> - <meta property="og:description" content="@yield('description')"> - <meta property="og:image" content="/favicon-128x128.png"> diff --git a/resources/views/layouts/default-hljs.blade.php b/resources/views/layouts/default-hljs.blade.php deleted file mode 100644 index d3199b3..0000000 --- a/resources/views/layouts/default-hljs.blade.php +++ /dev/null @@ -1,23 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - @include('includes.head-hljs') -</head> - -<body> -<div class="page"> -<div class="header"> - @include('includes.header') -</div> <!-- header --> - -<div id="pagebody"> - <div id="content" role="main"> -@yield('content') - </div> <!-- content --> - <div id="footer" class="pagefooter"> - @include('includes.footer') - </div> <!-- footer --> -</div> <!-- pagebody --> -</div> <!-- page --> -</body> -</html> |