-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplest.html
31 lines (29 loc) · 1015 Bytes
/
simplest.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
<!DOCTYPE html>
<html lang="en"><head>
<title>LiteJS simplest example</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1">
<link rel="icon" href="data:image/x-icon;,">
<link rel="stylesheet" href="style.css">
</head><body>
<script type="ui">
h1 LiteJS <is> simple!
hr
main
p This is simple template rendered in browser.
p.info All content not under a `%view` will be rendered immediately.
p Not actually <!-- commented-out! -->
dl
dt Things to do
dd Inspect downloaded resources in the Developer Tools' Network tab.
dd View the source code of this web page.
dd ;t 'Contribute on [!GitHub https://github.com/litejs/!].'
footer
hr
p
a[href="https://github.com/litejs/ui/wiki"] ← Wiki
a[href="routed.html"].right Next example with routed views →
p.text-sm Built with passion and a bit of JavaScript magic ✨
</script>
<script src="https://litejs.com/litejs.full.min.js"></script>
<noscript>This application requires JavaScript</noscript>
</body></html>