diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-10-13 16:03:39 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-10-14 16:34:00 +0800 |
commit | cdb80969e186404dc56761e844a3efcb065192cc (patch) | |
tree | ed79b3b3f95fbddfbade15bb78d92610f97b0f5a /index.html | |
parent | 7f9c28d1ad645eeac8ef2cd5e3cb71f8eaa3a6c6 (diff) |
refactor: add <main> for contents
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -2,24 +2,24 @@ | |||
2 | <html lang="en"> | 2 | <html lang="en"> |
3 | 3 | ||
4 | <head> | 4 | <head> |
5 | <meta charset="utf-8"/> | 5 | <meta charset="utf-8" /> |
6 | <title>DumbyMap</title> | 6 | <title>DumbyMap</title> |
7 | 7 | ||
8 | <meta name="viewport" content="width=device-width, initial-scale=1"/> | 8 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
9 | <link rel="shortcut icon" href="./assets/favicon.ico" type="image/ico"/> | 9 | <link rel="shortcut icon" href="./assets/favicon.ico" type="image/ico"> |
10 | 10 | ||
11 | <meta property="og:title" content="DumbyMap"> | 11 | <meta property="og:title" content="DumbyMap"> |
12 | <meta property="og:description" content="Read HTML with maps"/> | 12 | <meta property="og:description" content="Read HTML with maps"> |
13 | <meta property="og:type" content="website"> | 13 | <meta property="og:type" content="website"> |
14 | <meta property="og:url" content="https://outdoorsafetylab.github.io/dumbymap"> | 14 | <meta property="og:url" content="https://outdoorsafetylab.github.io/dumbymap"> |
15 | <meta property="og:logo" content="./assets/favicon.ico"> | 15 | <meta property="og:logo" content="./assets/favicon.ico"> |
16 | <meta property="og:image" content="./assets/og-example1.png"> | 16 | <meta property="og:image" content="./assets/og-example1.png"> |
17 | 17 | ||
18 | <!-- FIXME --> | 18 | <!-- FIXME --> |
19 | <link rel="stylesheet" type="text/css" href="./dist/css/style.css"/> | 19 | <link rel="stylesheet" type="text/css" href="./dist/css/style.css"> |
20 | <link rel="stylesheet" type="text/css" href="./dist/css/dumbymap.css"/> | 20 | <link rel="stylesheet" type="text/css" href="./dist/css/dumbymap.css"> |
21 | <link rel="stylesheet" type="text/css" href="./dist/css/easymde.min.css"/> | 21 | <link rel="stylesheet" type="text/css" href="./dist/css/easymde.min.css"> |
22 | <link rel="stylesheet" type="text/css" href="./dist/css/index.css" /> | 22 | <link rel="stylesheet" type="text/css" href="./dist/css/index.css"> |
23 | 23 | ||
24 | <!-- FIXME --> | 24 | <!-- FIXME --> |
25 | <script src="./dist/easymde.min.js"></script> | 25 | <script src="./dist/easymde.min.js"></script> |
@@ -27,11 +27,13 @@ | |||
27 | 27 | ||
28 | </head> | 28 | </head> |
29 | 29 | ||
30 | <body data-mode="editing"> | 30 | <body> |
31 | <div class="DumbyMap"></div> | 31 | <main data-mode="editing"> |
32 | <div class="editor"> | 32 | <div class="DumbyMap"></div> |
33 | <textarea></textarea> | 33 | <div class="editor"> |
34 | </div> | 34 | <textarea></textarea> |
35 | </div> | ||
36 | </main> | ||
35 | </body> | 37 | </body> |
36 | 38 | ||
37 | </html> | 39 | </html> |