aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarf20 <aruizfernandez05@gmail.com>2024-08-30 12:09:32 +0200
committerarf20 <aruizfernandez05@gmail.com>2024-08-30 12:09:32 +0200
commit0ba70c4c0700ef4f6d4fe1fcd453a49d1d8ae46e (patch)
tree26dca5a8d7b5bd8921b6ab4941d78825a5571a4b
downloadarfnet2-radio-0ba70c4c0700ef4f6d4fe1fcd453a49d1d8ae46e.tar.gz
arfnet2-radio-0ba70c4c0700ef4f6d4fe1fcd453a49d1d8ae46e.zip
Initial commit
-rw-r--r--README.md3
-rw-r--r--index.php23
2 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ffeb03f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# arfnet2-radio
+
+ARFNET Internet Radio web player
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..66a685d
--- /dev/null
+++ b/index.php
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <link rel="stylesheet" type="text/css" href="http://arf20.com/style.css">
+ <title>ARFNET</title>
+ </head>
+
+ <body>
+ <header><a href="/">
+ <img src="http://arf20.com/arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span>
+ </a></header>
+ <hr>
+ <main>
+ <h2 class="center">Radio</h2>
+ <p>Listen to ARFNET Internet Radio<br>
+ Weird nice music arf20 likes</p>
+ <audio controls>
+ <source src="/stream" type="audio/ogg">
+ </audio>
+ </main>
+ </body>
+</html>