| 123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>WordGame{{" / " + title if title else ""}}</title>
- <!-- Skeleton CSS -->
- <link rel="stylesheet" href="static/css/normalize.css">
- <link rel="stylesheet" href="static/css/skeleton.css">
- <!-- Fonts -->
- <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=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap"
- rel="stylesheet">
- <link rel="stylesheet" href="static/css/custom.css">
- </head>
- <body>
- <div class="titlebar">
- <h1>WordGame</h1>
- </div>
- {% block content %}
- {% endblock %}
- </body>
- </html>
|