Files
driftywinds.github.io/app.html
2023-05-01 08:57:49 -07:00

106 lines
3.0 KiB
HTML

<!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/shared.css">
<link rel="stylesheet" href="css/uibanner.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">
<button id="back" type="button">
<i class="bi bi-chevron-left"></i>
Back
</button>
<div id="title" class="hidden">
<img 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 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 permission required by this app.</p>
</div>
</div>
</div>
</div>
<script src="js/shared.js"></script>
<script src="js/app.js"></script>
<script src="js/main.js"></script>
</body>
</html>