-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
52 lines (43 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Rasti.js - JavaScript library for building user interfaces</title>
<meta name="keywords" content="rasti,js,javascript,library,component,model,view,emitter,mvc,ui,frontend,backbone">
<meta name="description" content="Rasti is a minimalistic JavaScript library for building user interfaces.">
<meta name="google-site-verification" content="UCroCcyY7Zf5eVbo3EV1Ao9eJcfVK3psojHB1JFo23s">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="docs/favicon.svg">
<link rel="mask-icon" href="docs/favicon.svg" color="#00FFD0">
<link rel="apple-touch-icon" href="docs/apple-touch-icon.png">
<link rel="manifest" href="docs/manifest.json">
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
:root {
--theme-color: #ef0b72;
--sidebar-nav-pagelink-background: none;
--sidebar-nav-pagelink-background--loaded: none;
--sidebar-nav-pagelink-background--active: none;
--sidebar-nav-pagelink-padding: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name : 'Rasti.js 2.0.2',
nameLink : '/',
repo : 'https://github.com/8tentaculos/rasti',
loadSidebar : 'docs/_sidebar.md',
auto2top : true,
routerMode: 'history',
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script data-goatcounter="https://rasti.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
</body>
</html>