viewer and parser added
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 1m44s

This commit is contained in:
dongho
2024-12-20 00:00:21 +09:00
parent f8fe2c089f
commit 0db0405ea1
6 changed files with 407 additions and 51 deletions

41
templates/index.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Billionaire yes</title>
<style>
/* Add your CSS here */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<!-- Add your content here -->
<header>
<h1>To Become Billionaire</h1>
</header>
<main>
<section>
<h2>Interested Coints Live Chart</h2>
<ul>
{% for coin in coins %}
<li><a href="/coin/{{coin}}">{{coin}}</a></li>
{% endfor %}
</ul>
</section>
</main>
<footer>
<p>&copy; 2024 Dongho Kim</p>
</footer>
<script>
// Add your JavaScript here
</script>
</body>
</html>