viewer and parser added
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 1m44s
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 1m44s
This commit is contained in:
41
templates/index.html
Normal file
41
templates/index.html
Normal 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>© 2024 Dongho Kim</p>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Add your JavaScript here
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user