blob: 59eb38a2d25504dafe1f7f82fed4b66cff992b44 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/nn.css">
<link rel="stylesheet" href="/assets/css/nn-pygments.css">
<link rel="stylesheet" href="/assets/css/man.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet">
<link rel="stylesheet" href="//at.alicdn.com/t/font_2668178_gvizekc2vj.css">
<title>{{page.title}}</title>
</head>
<body class="manpage toc2 toc-left">
{% include header-manpage.html %}
{% include_relative _toc.html %}
<main>
{% if page.version and page.version != site.latest %}
{% if page.version == "tip" %}
{% include manpage-tip.html %}
{% else %}
{% include manpage-old.html %}
{% endif %}
{% endif %}
{{ content }}
{% include footer-nng.html %}
</main>
</body>
</html>
|