Finish that shit
This commit is contained in:
parent
39d7895fad
commit
5472d7c7c7
16 changed files with 519 additions and 297 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<div class="info-table current-track">
|
||||
<div class="section current-track">
|
||||
<h2>Last/Current Track:</h2>
|
||||
<a href="{{ $track["url"] }}">{{ $track["title"] }} • {{ $track["artist"] }}</a><br>
|
||||
</div>
|
||||
|
|
|
|||
3
resources/views/components/discord-status.blade.php
Normal file
3
resources/views/components/discord-status.blade.php
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<span>I'm</span>
|
||||
<h2 class="online-status" style="color: {{ $status["color"] }};text-shadow: var(--firefox-shadow) {{ $status["color"] }}4f !important">{{ $status["text"] }}!</h2>
|
||||
<p><strong>Time in Britain:</strong> <span id="clock"></span></p>
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
<div class="sidebar">
|
||||
<div class="section"><x-navigation/></div>
|
||||
<div class="section"><x-settings/></div>
|
||||
<div class="section centerbox"><x-online-status/></div>
|
||||
<div class="section centerbox"><x-discord-status/></div>
|
||||
<div class="section"><x-weather/></div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
<span>I'm</span>
|
||||
<h2 class="online-status">Online!</h2>
|
||||
<p><strong>Time in Britain:</strong> <span id="clock"></span></p>
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
<p class="quote">
|
||||
@foreach($quote["lines"] as $line)
|
||||
<strong>{{ $line["character"] }}:</strong> "{{ $line["line"] }}"<br>
|
||||
<strong>{{ $line["character"] }}:</strong>
|
||||
{{-- Literally only one thing will trigger this lmao --}}
|
||||
@if($line["line"] == "*Rage squeals*")
|
||||
{{ $line["line"] }}
|
||||
@else
|
||||
"{{ $line["line"] }}"
|
||||
@endif<br>
|
||||
@endforeach
|
||||
<small>({{ $quote["attribution"] }})</small>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<div class="section">
|
||||
<table class="music-top10">
|
||||
<caption>
|
||||
<h2 style="margin-bottom: 5px">Top 10 Tracks (Last 30 days):</h2>
|
||||
|
|
@ -14,3 +15,4 @@
|
|||
<x-track :track="$track" :count="$count"/>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
<p><strong>Weather:</strong></p>
|
||||
<p>
|
||||
69C<br>
|
||||
0mm/hr<br>
|
||||
69%<br>
|
||||
420inHg
|
||||
</p>
|
||||
<p><strong>Weather Conditions:</strong></p>
|
||||
<hr style="margin: 4px 0">
|
||||
<p><strong>Temperature:</strong> {{ round(($conditions[0]["temp"] - 32) * (5/9), 1) }} degC</p>
|
||||
<p><strong>Rain:</strong> {{ ($conditions[0]["rain_rate_last"] * 0.2) }}mm/hr ({{ $conditions[0]["rainfall_daily"] }}mm today)</p>
|
||||
@if ($conditions[0]["wind_speed_last"] != 0)
|
||||
<p><strong>Wind:</strong> {{ round($conditions[0]["wind_speed_last"], 1) }}mph ({{ $conditions[0]["wind_dir_last"] }} deg)</p>
|
||||
@else
|
||||
<p><strong>Wind:</strong> 0mph</p>
|
||||
@endif
|
||||
<p><strong>Humidity:</strong> {{ round($conditions[0]["hum"], 1) }}%</p>
|
||||
<p><strong>Pressure:</strong> {{ round($conditions[2]["bar_sea_level"], 1) }} inHg</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue