diff --git a/public/css/highlight/tomorrow-night-bright.css b/public/css/highlight/tomorrow-night-bright.css
deleted file mode 100644
index f909618..0000000
--- a/public/css/highlight/tomorrow-night-bright.css
+++ /dev/null
@@ -1,70 +0,0 @@
-/* Tomorrow Night Bright Theme */
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-
-/* Tomorrow Comment */
-.hljs-comment,
-.hljs-quote {
- color: #969896;
-}
-
-/* Tomorrow Red */
-.hljs-variable,
-.hljs-template-variable,
-.hljs-tag,
-.hljs-name,
-.hljs-selector-id,
-.hljs-selector-class,
-.hljs-regexp,
-.hljs-deletion {
- color: #d54e53;
-}
-
-/* Tomorrow Orange */
-.hljs-number,
-.hljs-built_in,
-.hljs-literal,
-.hljs-type,
-.hljs-params,
-.hljs-meta,
-.hljs-link {
- color: #e78c45;
-}
-
-/* Tomorrow Yellow */
-.hljs-attribute {
- color: #e7c547;
-}
-
-/* Tomorrow Green */
-.hljs-string,
-.hljs-symbol,
-.hljs-bullet,
-.hljs-addition {
- color: #b9ca4a;
-}
-
-/* Tomorrow Blue */
-.hljs-title,
-.hljs-section {
- color: #7aa6da;
-}
-
-/* Tomorrow Purple */
-.hljs-keyword,
-.hljs-selector-tag {
- color: #c397d8;
-}
-
-.hljs {
- background: black;
- color: #eaeaea;
-}
-
-.hljs-emphasis {
- font-style: italic;
-}
-
-.hljs-strong {
- font-weight: bold;
-}
diff --git a/public/css/master.css b/public/css/master.css
index a1def3d..f1bb779 100644
--- a/public/css/master.css
+++ b/public/css/master.css
@@ -376,11 +376,6 @@ caption {
table.info-table tr td small {
margin-bottom: 5px;
}
-
-.hljs {
- background: none !important;
-}
-
.me img {
float: right;
margin: 5px;
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
-
-
{{ $file_name }} {{ $file_size}} bytes
-
- {!! $highlighted->value !!}
-
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
-
-
- Last/Current Track: {{ $current_track->name }} • {{ $current_track->artist }}
- Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)
-@foreach ($toptracks as $track)
- @if ($count >= $cfg['toptracks'])
- @break
- @endif
- {{ str_pad($count+1, 2, '0', STR_PAD_LEFT) }}] {{ $track->name }} • {{ $track->artist }}
- ({{ $track->plays }} plays)
-@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
-
-Local Weather (Last Update: {{ $updated }})
- Wind Speed: {{ $data->wind->speed }} mph
- Wind Direction: {{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}
- Temperature: {{ $data->temperature }}°C
- Rain Rate: {{ $data->rain_rate }} mm/hr
- Humidity: {{ $data->humidity }}%
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 @@
-
-
-
-
-
-
-
-
-
-
-
- @yield('title') - diskfloppy.me
-
-
-
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 @@
-
-
-
- @include('includes.head-hljs')
-
-
-
-
-
-
-
-
-@yield('content')
-
-
-
-
-
-