blob: f27a4121f82dce52c71816159aac79e1ba012fc5 (
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
|
<!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="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="/assets/css/bulma.css">
<link rel="stylesheet" href="/assets/css/index.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="article">
{% include header-nng.html %}
{% if page.url and page.url == site.index_path %}
{% include nn-content.html %}
{% else %}
{{ content }}
{% endif %}
<div class="container">
{% include footer-nng.html %}
</div>
</body>
</html>
|