|
1 |
| -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <html lang="en" data-theme="light">
|
3 | 3 | <head>
|
4 |
| - <meta charset="UTF-8"> |
5 |
| - {% set description = "Learn Python typing (type hints) with interactive online exercises!" %} |
6 |
| - {% block head %}{% endblock %} |
7 |
| - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
8 |
| - <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%221em%22 font-size=%2290%22>👩🏻💻</text></svg>"> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + {% set description = "Learn Python typing (type hints) with interactive online |
| 6 | + exercises!" %} {% block head %}{% endblock %} |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 8 | + <link |
| 9 | + rel="icon" |
| 10 | + href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%221em%22 font-size=%2290%22>👩🏻💻</text></svg>" |
| 11 | + /> |
9 | 12 | <!-- Open Graph -->
|
10 | 13 | <meta property="og:type" content="website" />
|
11 | 14 | <meta property="og:url" content="https://python-type-challenges.zeabur.app/" />
|
12 | 15 | <meta property="og:title" content="{{title}}" />
|
13 | 16 | <meta property="og:description" content="{{description}}" />
|
14 |
| - <meta property="og:image" content="https://github.com/laike9m/images/assets/2592205/11e7cb79-caad-4be4-8b15-2732cbc698f3" /> |
| 17 | + <meta |
| 18 | + property="og:image" |
| 19 | + content="https://github.com/laike9m/images/assets/2592205/11e7cb79-caad-4be4-8b15-2732cbc698f3" |
| 20 | + /> |
15 | 21 | <!-- Twitter -->
|
16 | 22 | <meta name="twitter:card" content="summary" />
|
17 | 23 | <meta name="twitter:url" content="https://python-type-challenges.zeabur.app/" />
|
18 | 24 | <meta name="twitter:title" content="{{title}}" />
|
19 | 25 | <meta name="twitter:description" content="{{description}}" />
|
20 |
| - <meta name="twitter:image" content="https://github.com/laike9m/images/assets/2592205/2012b6cc-7748-4708-b5aa-671dc27cfc18" /> |
| 26 | + <meta |
| 27 | + name="twitter:image" |
| 28 | + content="https://github.com/laike9m/images/assets/2592205/2012b6cc-7748-4708-b5aa-671dc27cfc18" |
| 29 | + /> |
21 | 30 | <meta name="twitter:creator" content="@laike9m" />
|
22 | 31 | <meta name="twitter:site" content="@laike9m" />
|
23 | 32 |
|
24 |
| - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/picocss/1.5.10/pico.min.css"> |
| 33 | + <link |
| 34 | + rel="stylesheet" |
| 35 | + href="https://cdnjs.cloudflare.com/ajax/libs/picocss/1.5.10/pico.min.css" |
| 36 | + /> |
25 | 37 | <style type="text/css">
|
26 |
| - /* override some style in picocss */ |
27 |
| - h1, h2, h3, h4, h5, h6, |
| 38 | + /* override some style in picocss */ |
| 39 | + h1, |
| 40 | + h2, |
| 41 | + h3, |
| 42 | + h4, |
| 43 | + h5, |
| 44 | + h6, |
28 | 45 | p {
|
29 | 46 | margin-bottom: 0;
|
30 | 47 | }
|
31 | 48 | </style>
|
32 |
| - <script data-goatcounter="https://laike9m.goatcounter.com/count" |
33 |
| - async src="{{url_for('static', filename='js/goatcounter.js')}}")></script> |
34 |
| - <script src="https://cdnjs.cloudflare.com/ajax/libs/htmx/1.9.10/htmx.min.js" |
35 |
| - crossorigin="anonymous" referrerpolicy="no-referrer"> |
36 |
| - </script> |
| 49 | + <script |
| 50 | + data-goatcounter="https://laike9m.goatcounter.com/count" |
| 51 | + async |
| 52 | + src="{{url_for('static', filename='js/goatcounter.js')}}" |
| 53 | + ) |
| 54 | + ></script> |
| 55 | + <script |
| 56 | + src="https://cdnjs.cloudflare.com/ajax/libs/htmx/1.9.10/htmx.min.js" |
| 57 | + crossorigin="anonymous" |
| 58 | + referrerpolicy="no-referrer" |
| 59 | + ></script> |
37 | 60 | </head>
|
38 | 61 |
|
39 | 62 | <body>
|
40 | 63 | {% block content %}{% endblock %}
|
41 | 64 | </body>
|
42 |
| - |
43 | 65 | </html>
|
0 commit comments