Moves site from static HTML to a dynamic terminal interface. This commit represents a major overhaul, introducing: - A functional terminal emulator implemented in JavaScript. - Command parsing and execution framework. - Various terminal commands for navigation and utility functions. - SASS conversion. The old CSS and simple HTML are completely removed. A new Hugo theme is implemented.
25 lines
443 B
HTML
Executable file
25 lines
443 B
HTML
Executable file
<script src="/js/nowplaying.js"></script>
|
|
|
|
<link rel="stylesheet" href="/css/nowplaying.css">
|
|
|
|
<div class="nowplayingcard">
|
|
<div class="nowplayingcontainer-inner">
|
|
<div class="trackInfo">
|
|
🎵 <span id="artist"></span> - <a id="tracktitle"></a>
|
|
<a id="album"></a>
|
|
</div>
|
|
<img id="trackart" src="">
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
setInterval(getLastTrack("ritualplays","3a4fef48fecc593d25e0f9a40df1fefe"), 10 * 1000);
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|