Files
driftywinds.github.io/app.html
foxster-mp4 8ed7aa4bc1 Refactor
2023-07-17 19:16:44 -07:00

125 lines
3.9 KiB
HTML

<!--
app.html
altsource-viewer (https://github.com/therealFoxster/altsource-viewer)
Copyright (c) 2023 Foxster.
MIT License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body class="loading">
<div id="loading">
<img src="img/loading.gif" alt="loading">
<p>Loading</p>
</div>
<div id="main">
<div id="top">
<!-- Navigation bar -->
<div id="nav-bar">
<div id="back-container">
<button id="back" type="button">
<i class="bi bi-chevron-left"></i>
Back
</button>
</div>
<div id="title" class="hidden">
<img id="app-icon" src="img/generic_app.jpeg" alt="generic-app-icon">
<p>AltSource</p>
</div>
<a href="https://example.com" class="install hidden">
<button class="uibutton">Free</button>
</a>
</div>
</div>
<!-- Content -->
<div class="item">
<div class="app-header">
<div class="content">
<img id="app-icon" src="img/generic_app.jpeg" alt="generic-app-icon">
<div class="right">
<div class="text">
<p class="title">AltSource</p>
<p class="subtitle">therealFoxster</p>
</div>
<div class="ipa">
<a href="https://example.com" class="install">
<button class="uibutton">Free</button>
</a>
<a href="http://example.com" id="download">
Download IPA
</a>
</div>
</div>
</div>
<div class="background"></div>
</div>
</div>
<div id="preview" class="section">
<p id="subtitle">The quick brown fox jumps over the lazy dog.</p>
<div class="header">
<h2>Preview</h2>
</div>
<div id="screenshots"></div>
<p id="description">
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
</p>
</div>
<div id="whats-new" class="section">
<div class="header">
<h2>What's New</h2>
<p id="version-date">Apr 10, 2023</p>
</div>
<div class="header">
<p id="version">Version 2.0</p>
<p id="version-size">0 KB</p>
</div>
<p id="version-description">
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog.
</p>
</div>
<div id="permissions" class="section">
<div class="header">
<h2>Permissions</h2>
</div>
<div class="permission">
<i class="bi-person-fill-check"></i>
<div class="text">
<p class="title">None</p>
<p class="description">The developer has not specified any permissions required by this app.</p>
</div>
</div>
</div>
<div id="source" class="section">
<div class="header">
<h2>Discover More On</h2>
</div>
<a class="container" target="_blank">
<div class="row">
<p class="row-title">Hello, World!</p>
<p class="row-subtitle">The quick brown fox jumps over the lazy dog.</p>
</div>
<i class="bi bi-arrow-up-right-square"></i>
</a>
</div>
</div>
<script src="js/app.js" type="module"></script>
</body>
</html>