-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html -->
<meta name="viewport" content="user-scalable=no, width=device-width, viewport-fit=cover">
<!-- https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="rgba(249,249,249,0.94)" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="rgba(29,29,29,0.94)" media="(prefers-color-scheme: dark)">
<title>UIKit on the Web</title>
<base href="./">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link rel="stylesheet" href="stylesheets/UIKit.css">
<link rel="stylesheet" href="stylesheets/theme.css">
<link rel="apple-touch-icon" href="custom_icon.png">
</head>
<body style="min-height: calc(100vh + 146px);">
<div id="window">
<apple-uiview>
<apple-uinavigationbar
title="UIKit on the Web"
prefersLargeTitle="true"
>
</apple-uinavigationbar>
<div style="
padding-right: env(safe-area-inset-right);
padding-left: env(safe-area-inset-left);
">
<h1 id="title-large">UIKit on the Web</h1>
<div class="container-fluid" style="--bs-gutter-x: 40px; height: 1000px;">
<!-- <hr class="my-0" style="--bs-border-width: 0.33px;"> -->
<h1>Hello, world!</h1>
</div>
</div>
</apple-uiview>
<apple-uitabbar>
<apple-uitabbaritem title="Home" href="./">
<i class="bi bi-house-fill"></i>
</apple-uitabbaritem>
<!-- <apple-uitabbaritem title="Controls" href="./controls">
<i class="bi bi-sliders"></i>
</apple-uitabbaritem> -->
</apple-uitabbar>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script src="javascripts/UIView.js"></script>
<script src="javascripts/UINavigationBar.js"></script>
<script src="javascripts/UITabBar.js"></script>
<script src="javascripts/UIBarItem.js"></script>
<script src="javascripts/UITabBarItem.js"></script>
</body>
</html>