File size: 914 Bytes
5c239ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>This Pokémon Does Not Exist</title>
    <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" />
    <link rel="stylesheet" id="stylesheet-tag" />
    <script type="module" id="script-tag"></script>
    <script>
      const basePath = document.location.origin + document.location.pathname;
      document.getElementById('script-tag').src = `${basePath}static/index.js`;
      document.getElementById('stylesheet-tag').href = `${basePath}static/style.css`;
    </script>
  </head>
  <body>
    <h1>This Pokémon Does Not Exist</h1>
    <div class="duration"><span class="seconds">0.0</span>/500s</div>
    <button class="generate">Generate Pokémon Card with AI</button>
    <section class="render"></section>
  </body>
</html>