diff options
author | Minteck <contact@minteck.org> | 2022-07-19 21:19:59 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-19 21:19:59 +0200 |
commit | 735d518ae6ecc6c8d0ecbbae4aa3c019151178fc (patch) | |
tree | 341ee0e7faa7b6f3367b9a4e129cbd148006158c /_frame/library/index.php | |
parent | 3d71c572ec9a0827071be1978731079e8f1e5dbf (diff) | |
download | argon-735d518ae6ecc6c8d0ecbbae4aa3c019151178fc.tar.gz argon-735d518ae6ecc6c8d0ecbbae4aa3c019151178fc.tar.bz2 argon-735d518ae6ecc6c8d0ecbbae4aa3c019151178fc.zip |
Diffstat (limited to '_frame/library/index.php')
-rw-r--r-- | _frame/library/index.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/_frame/library/index.php b/_frame/library/index.php new file mode 100644 index 0000000..e3d14fc --- /dev/null +++ b/_frame/library/index.php @@ -0,0 +1,38 @@ +<?php $root = $_SERVER['DOCUMENT_ROOT']; ?> +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Argon</title> + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> + <link rel="stylesheet" href="/css/fonts.css"> + <link rel="stylesheet" href="/css/general.css"> + <link rel="stylesheet" href="/css/header.css"> + <link rel="stylesheet" href="/css/frame-home.css"> + <link rel="stylesheet" href="/css/frame.css"> + <meta name="HandheldFriendly" content="true" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> +</head> +<body> +<div id="argon-frame"> + <div id="frame-header"> + Home + </div> + <div id="frame-contents"> + <div id="frame-home-intro"> + <img src="/logo/512.png" id="frame-home-logo"> + <div id="frame-home-welcome">Welcome to the Argon Media Platform!</div> + <div id="frame-home-tagline">High quality ad-free music from Minteck</div> + <button onclick="location.href='/_frame/library';" id="frame-home-button">Browse Library</button> + <div id="frame-home-links"> + <a onclick="location.href='/_frame/about';" id="frame-home-link-about" class="frame-home-link">About Argon</a> + · + <a onclick="location.href='/_frame/settings';" id="frame-home-link-settings" class="frame-home-link">Preferences</a> + · + <a onclick="window.open('https://gitlab.minteck.org/explore/projects/topics/Argon');" id="frame-home-link-source" class="frame-home-link">Source Code</a> + </div> + </div> + </div> +</div> +</body> +</html>
\ No newline at end of file |