-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (93 loc) · 5.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<title>Animal Crossing ★ Villager Lister</title>
<link rel="stylesheet" type="text/css" href="./styles/styles.css">
<meta name="title" content="Animal Crossing ★ Villager Lister">
<meta name="description" content="Easily search, view and assemble lists of your favorite Animal Crossing villagers!">
<link rel="manifest" href="./manifest.webmanifest">
<meta name="msapplication-config" content="./public/favicons/browserconfig.xml">
<link rel="apple-touch-icon" sizes="180x180" href="./public/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./public/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="./public/favicons/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="./public/favicons/favicon-16x16.png">
<link rel="mask-icon" href="./public/favicons/safari-pinned-tab.svg" color="#ffa500">
<link rel="shortcut icon" href="./public/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="AC Lister">
<meta name="application-name" content="AC Lister">
<meta name="theme-color" content="#ffefb8">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://ac-lister.netlify.app/">
<meta property="og:title" content="Animal Crossing ★ Villager Lister">
<meta property="og:description" content="Easily search, view and assemble lists of your favorite Animal Crossing villagers!">
<meta property="og:image" content="./public/meta-banner.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://ac-lister.netlify.app/">
<meta property="twitter:title" content="Animal Crossing ★ Villager Lister">
<meta property="twitter:description" content="Easily search, view and assemble lists of your favorite Animal Crossing villagers!">
<meta property="twitter:image" content="./public/meta-banner.png">
</head>
<body>
<header>
<h1>Animal Crossing <i class="fa fa-star" aria-hidden="true"></i> Villager Lister</h1>
<small></small>
</header>
<main>
<h2>Search</h2>
<section id="search-container">
<form id="search">
<input id="search-bar" placeholder="Search" type="search" autofocus/>
<button id="search-button" title="Search (Name, Species, and Personality)" class="clickable fa fa-search" aria-hidden="true"></button>
<a id="close-search-panel-button" class="clickable fa fa-arrow-left" href="#"></a>
</form>
<div id="search-results">
</div>
</section>
<h2>Lists</h2>
<section id="main-container">
<div class="menu">
<button id="open-search-panel-button" class="clickable fa fa-search" aria-hidden="true"></button>
<button id="new-list-button" title="Add list" class="clickable fa fa-plus" aria-hidden="true"></button>
<button id="export-lists-button" title="Save lists" class="clickable fa fa-upload" aria-hidden="true"></button>
<button id="import-lists-button" title="Import lists" class="clickable fa fa-download" aria-hidden="true"></button>
<button id="clear-lists-button" title="Clear all lists" class="clickable fa fa-times" aria-hidden="true"></button>
<input id="file_input" hidden type="file" accept="application/json,.json">
<button id="export-text-button" title="Save as text file" class="clickable fa fa-file" aria-hidden="true"></button>
<!--<button id="share_button" title="Open sharable link" class="clickable fa fa-share" aria-hidden="true"></button>-->
</div>
<div id="lists-container">
<ul id="lists">
<noscript>I'm sorry but this website requires JavaScript to be enabled to work. 😅</noscript>
</ul>
</div>
</section>
<h2>Profile</h2>
<section id="profile-container">
<div class="menu">
<select id="list-select"></select>
<button id="add-remove-button" aria-hidden="true" disabled title="Add to list" class="fa fa-plus clickable"></button>
</div>
<summary id="villager-information-container">
<ul id="villager-information"></ul>
</summary>
<img title="Image not available (yet)" src="./public/villager_heads/wip.jpg" id="profile-image">
</section>
</main>
</body>
<script src="./src/main/init.ts" type="text/javascript" defer></script>
<link rel="stylesheet" type="text/css" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" type="text/css" href="./styles/LeckerliOneFont.css">
<h2>Footer</h2>
<footer>
<a title="Info Page" href="./info/index.html"><i class="fa fa-question" aria-hidden="true"></i></a>
<a title="GitHub Repo" target="_blank" rel="noopener noreferrer" href="https://github.com/Maxzilla60/ac-lister"><i class="fab fa-github" aria-hidden="true"></i></a>
<a title="Tumblr" target="_blank" rel="noopener noreferrer" href="https://hungrymaxzilla.tumblr.com/tagged/aclister"><i class="fab fa-tumblr" aria-hidden="true"></i></a>
<a title="Twitter" target="_blank" rel="noopener noreferrer" href="https://twitter.com/hungrymaxzilla"><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a title="Artist" target="_blank" rel="noopener noreferrer" href="https://www.redbubble.com/people/purplepixel/shop"><i class="fa fa-paint-brush" aria-hidden="true"></i></a>
</footer>
</html>