-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (72 loc) · 3.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149749027-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-149749027-1');
</script>
<meta charset="UTF-8">
<title>Heta project homepage</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Heta project is an initiative for the development of infrastructure for QSP and systems biology. The project also summarizes our experience in modeling of dynamical systems: systems biology, PK/PD, QSP as well as best practices of software development.">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="assets/style/style.css">
<meta property="og:title" content="Heta project homepage" />
<meta property="og:locale" content="en_US" />
<meta property="og:url" content="https://hetalang.github.io/#/" />
<meta property="og:site_name" content="Heta project homepage" />
<meta property="og:image" content="/assets/img/site-screen.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@insysbio" />
<link rel="canonical" href="https://hetalang.github.io/" />
<meta name="google-site-verification" content="uwCMW76GaO9RBs0Q9sBqinseOFQ5Sd4AFdZnp2KCQ5g" />
</head>
<body>
<div id="app">Please wait...</div>
<script>
window.$docsify = {
name: 'heta',
repo: 'https://github.com/hetalang',
homepage: 'README.md',
themeColor: '',
loadNavbar: true, // set true to use file _navbar.md
loadSidebar: true,
logo: '/assets/img/logo.svg',
maxLevel: 4,
subMaxLevel: 2,
relativePath: true,
auto2top: true,
//externalLinkRel: 'noopener', // see https://mathiasbynens.github.io/rel-noopener/
//markdown: {}, // see https://docsify.js.org/#/markdown
externalLinkTarget: '_blank',
alias: {
'/.*/_navbar.md': '/_navbar.md',
'/specifications/': 'https://raw.githubusercontent.com/hetalang/heta-specifications/master/index',
'/specifications/([^_].*)': 'https://raw.githubusercontent.com/hetalang/heta-specifications/master/$1',
'/heta-case-mini/': 'https://raw.githubusercontent.com/insysbio/heta-case-mini/master/README',
'/heta-compiler/': 'https://raw.githubusercontent.com/hetalang/heta-compiler/master/index',
'/heta-compiler/declaration-schema.json': 'https://raw.githubusercontent.com/hetalang/heta-compiler/master/src/builder/declaration-schema.json',
'/heta-compiler/([^_].*)': 'https://raw.githubusercontent.com/hetalang/heta-compiler/master/$1',
'/heta-compiler/_sidebar.md': '/heta-compiler-sidebar.md',
'/heta-simulator/': 'https://raw.githubusercontent.com/hetalang/HetaSimulator.jl/master/README',
'/heta-simulator/([^_].*)': 'https://raw.githubusercontent.com/hetalang/HetaSimulator.jl/master/$1',
},
noCompileLinks : [
],
//ga: 'UA-149749027-1',
//requestHeaders: {'cache-control': 'max-age=43200'} // 12 hours
//requestHeaders: {'cache-control': 'no-store, max-age=0'}
}
</script>
<!--<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>-->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!--<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>-->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-julia.min.js"></script>
</body>
</html>