forked from pm2-hive/pm2-hive.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.html
93 lines (86 loc) · 3.59 KB
/
docs.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
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
</head>
<body>
{% include header.html %}
<main>
<section class="section-doc">
<div class="section-background">
<div class="section-wrapper">
<div class="hexagon hexagon-1"></div>
<div class="hexagon hexagon-2"></div>
<div class="hexagon hexagon-3"></div>
<div class="hexagon hexagon-4"></div>
</div>
</div>
<div class="section-wrapper">
<h1>{{ page.title }}</h1>
<div class="doc-nav-and-content">
<nav>
<div class="search-field">
<input type="text" placeholder="Search" />
<i class="fa fa-search"></i>
</div>
<ul>
{% for item in site.data.nav %}
<li class="nav-section {% if page.url contains item.url %}active{% endif %}">
<a class="nav-section-title" href="{{item.url | escape}}">{{ item.title | escape }}</a>
<ul class="nav-section-content">
{% for item in item.subnav %}
<li class="nav-section-entry {% if page.url contains item.url %}active{% endif %}">
<a
href="{% unless item.url contains '://' %}{{ site.url }}{% endunless %}{{ item.url }}"
title="{{item.title}}"
{% if item.blank == true %}
target="_blank"
{% endif %}
>
{{ item.title }}
</a>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</nav>
<article class="doc-content">
{{ content }}
<a class="edit-page-button" target="_blank" href="{{site.repo_url}}/tree/master/{{page.path}}" title="Edit Page">
<i class="fa fa-2x fa-github" aria-hidden="true"></i>
Contribute to this page
</a>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'pm2';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
</article>
</div>
</div>
</section>
</main>
{% include footer.html %}
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
<script>
docsearch({
apiKey: '1d274d1e258b11c96ef6cfc32455be56',
indexName: 'keymetrics',
inputSelector: '.search-field input',
});
</script>
<script src="{{ site.url }}/assets/docs.js"></script>
<script src="{{ site.url }}/assets/menu.js"></script>
</body>
</html>