Files
Code-000/templates/about.html
T

44 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Spoty">
<meta name="description" content="A website to visualize the karuta collection.">
<title>Natsuki | Karuta Collection Viewer</title>
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/icon_round.png') }}">
<meta property="og:image" content="https://cdn.discordapp.com/attachments/1068967834920689826/1209924869979111474/image.png">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<script src="{{ url_for('static', filename='js/upload.js') }}"></script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
</head>
<body>
<div class="body">
<h1>What to do?</h1>
<p>Just use /spreadsheet in dm of Karuta and use this file. If you want to get a burn list tag the card you want to burn with the burn 🔥 button and at the end click on Download.</p>
<div class="container fixed-bottom">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<span class="mb-3 mb-md-0 text-body-secondary">© 2024 Natsuki</span>
</div>
<ul class="nav col-md-4 justify-content-end">
<li class="nav-item"><a href="/about" class="nav-link px-2 text-body-secondary">About</a></li>
<li class="nav-item"><a href="/" class="nav-link px-2 text-body-secondary">Home</a>
</ul>
</footer>
</div>
</div>
</body>
</html>