mirror of
https://github.com/daydreamer-json/ak-endfield-api-archive.git
synced 2026-03-26 17:22:22 +01:00
feat(pages): scaffold web documentation with parcel and custom fonts
This commit is contained in:
81
pages/src/about.html
Normal file
81
pages/src/about.html
Normal file
@@ -0,0 +1,81 @@
|
||||
<!doctype html>
|
||||
<html lang="en" data-bs-theme="dark">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Arknights: Endfield API Archive</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="Automated Arknights: Endfield game API response archive and download library"
|
||||
/>
|
||||
<meta property="og:title" content="Arknights: Endfield API Archive" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="" />
|
||||
<meta property="og:image" content="" />
|
||||
<meta property="og:image:alt" content="" />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="Arknights: Endfield API Archive" />
|
||||
<meta name="twitter:image" content="" />
|
||||
<!-- <link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
|
||||
<link rel="apple-touch-icon" href="icon.png" /> -->
|
||||
<!-- <meta name="theme-color" content="#fafafa" /> -->
|
||||
<style>
|
||||
@import "./assets/css/essentials.css";
|
||||
@import "./assets/css/about.css";
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container my-4 px-4" id="mainContainer">
|
||||
<section>
|
||||
<h1 class="text-center fw-bold">Arknights: Endfield API Archive</h1>
|
||||
<ul class="nav nav-tabs justify-content-center">
|
||||
<li class="nav-item">
|
||||
<a href="./index.html" class="nav-link">Top</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active">About</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section id="content" class="mt-4">
|
||||
<h2>About this website</h2>
|
||||
<p>
|
||||
This site functions as a simplified display page for data from the
|
||||
<strong>ak-endfield-api-archive</strong> repository.
|
||||
</p>
|
||||
<p>
|
||||
The
|
||||
<a href="https://github.com/daydreamer-json/ak-endfield-api-archive"
|
||||
><strong>ak-endfield-api-archive</strong></a
|
||||
>
|
||||
repository automatically records various API data changes for
|
||||
Arknights: Endfield. It also archives not only API changes but also
|
||||
some packages and raw binary data. This is useful for certain users
|
||||
interested in analyzing and researching game data.
|
||||
</p>
|
||||
<h3>Disclaimer</h3>
|
||||
<p>
|
||||
This project has no affiliation with Hypergryph (GRYPHLINE) and was
|
||||
created solely for
|
||||
<strong>private use, educational, and research purposes.</strong>
|
||||
<br />
|
||||
Copyright for the archived API data and binary data belongs to their
|
||||
respective copyright holders.
|
||||
</p>
|
||||
<p>
|
||||
I assume no responsibility whatsoever.
|
||||
<strong>PLEASE USE IT AT YOUR OWN RISK.</strong>
|
||||
</p>
|
||||
</section>
|
||||
<hr />
|
||||
<section>
|
||||
<p class="text-center text-muted">
|
||||
<small>(C) daydreamer-json and contributors</small>
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
||||
<img id="endmin-thumbsup" src="./assets/img/endmin_thumbsup_640px.webp" />
|
||||
<script type="module" src="./assets/ts/essentials.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user