jekyll-rtd-theme 1.1.5 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +48 -29
- data/_includes/addons/analytics.liquid +5 -12
- data/_includes/addons/github.liquid +19 -4
- data/_includes/assets/sw.caches.js +38 -28
- data/_includes/class/_breadcrumbs.liquid +33 -0
- data/_includes/class/_footer.liquid +41 -0
- data/_includes/{toctree.liquid → class/_toctree.liquid} +4 -7
- data/_includes/class/addons-wrap.liquid +26 -0
- data/_includes/class/content-wrap.liquid +20 -0
- data/_includes/class/sidebar-wrap.liquid +18 -0
- data/_includes/extend/list.liquid +4 -4
- data/_includes/extend/toctree.liquid +12 -17
- data/_includes/head/custom.liquid +19 -0
- data/_includes/head/links.liquid +16 -0
- data/_includes/head/metadata.liquid +21 -0
- data/_includes/head/script.extension.liquid +29 -0
- data/_includes/head/script.liquid +16 -0
- data/_includes/head/script.schema.liquid +27 -0
- data/_includes/head/title.liquid +1 -0
- data/_includes/list.liquid +2 -2
- data/_includes/rest/defaults.liquid +69 -0
- data/_includes/rest/i18n.liquid +1 -0
- data/_includes/{reset → rest}/site_pages.liquid +0 -0
- data/_includes/{extend → rest}/tabs.liquid +0 -0
- data/_includes/{reset → rest}/workdir.liquid +1 -15
- data/_includes/shortcodes/danger.liquid +9 -0
- data/_includes/shortcodes/mermaid.liquid +1 -0
- data/_includes/shortcodes/note.liquid +9 -0
- data/_includes/shortcodes/tip.liquid +9 -0
- data/_includes/shortcodes/warning.liquid +9 -0
- data/_layouts/default.liquid +22 -240
- data/_layouts/plugins/compress.liquid +13 -10
- data/_layouts/plugins/extension.liquid +32 -22
- data/_sass/@primer/base/base.scss +90 -0
- data/_sass/@primer/base/index.scss +6 -0
- data/_sass/@primer/base/kbd.scss +21 -0
- data/_sass/@primer/base/normalize.scss +423 -0
- data/_sass/@primer/base/typography-base.scss +100 -0
- data/_sass/@primer/breadcrumb/breadcrumb.scss +28 -0
- data/_sass/@primer/breadcrumb/index.scss +3 -0
- data/_sass/@primer/buttons/button-group.scss +91 -0
- data/_sass/@primer/buttons/button.scss +296 -0
- data/_sass/@primer/buttons/index.scss +4 -0
- data/_sass/@primer/buttons/misc.scss +205 -0
- data/_sass/@primer/forms/form-control.scss +278 -0
- data/_sass/@primer/forms/form-group.scss +279 -0
- data/_sass/@primer/forms/form-select.scss +38 -0
- data/_sass/@primer/forms/form-validation.scss +369 -0
- data/_sass/@primer/forms/index.scss +7 -0
- data/_sass/@primer/forms/input-group.scss +53 -0
- data/_sass/@primer/forms/radio-group.scss +43 -0
- data/_sass/@primer/markdown/blob-csv.scss +31 -0
- data/_sass/@primer/markdown/code.scss +73 -0
- data/_sass/@primer/markdown/headings.scss +72 -0
- data/_sass/@primer/markdown/images.scss +131 -0
- data/_sass/@primer/markdown/index.scss +8 -0
- data/_sass/@primer/markdown/lists.scss +76 -0
- data/_sass/@primer/markdown/markdown-body.scss +99 -0
- data/_sass/@primer/markdown/tables.scss +38 -0
- data/_sass/@primer/support/index.scss +11 -0
- data/_sass/@primer/support/mixins/buttons.scss +184 -0
- data/_sass/@primer/support/mixins/layout.scss +55 -0
- data/_sass/@primer/support/mixins/misc.scss +32 -0
- data/_sass/@primer/support/mixins/typography.scss +88 -0
- data/_sass/@primer/support/variables/color-system.scss +243 -0
- data/_sass/@primer/support/variables/colors.scss +55 -0
- data/_sass/@primer/support/variables/layout.scss +149 -0
- data/_sass/@primer/support/variables/misc.scss +42 -0
- data/_sass/@primer/support/variables/typography.scss +43 -0
- data/_sass/@primer/utilities/animations.scss +187 -0
- data/_sass/@primer/utilities/borders.scss +184 -0
- data/_sass/@primer/utilities/box-shadow.scss +25 -0
- data/_sass/@primer/utilities/colors.scss +185 -0
- data/_sass/@primer/utilities/details.scss +34 -0
- data/_sass/@primer/utilities/flexbox.scss +121 -0
- data/_sass/@primer/utilities/index.scss +14 -0
- data/_sass/@primer/utilities/layout.scss +134 -0
- data/_sass/@primer/utilities/margin.scss +68 -0
- data/_sass/@primer/utilities/padding.scss +59 -0
- data/_sass/@primer/utilities/typography.scss +325 -0
- data/_sass/@primer/utilities/visibility-display.scss +82 -0
- data/_sass/_font-face.scss +65 -0
- data/_sass/_icons.scss +57 -0
- data/_sass/_layout.scss +75 -0
- data/_sass/_reset.scss +13 -0
- data/_sass/_root.scss +9 -0
- data/_sass/_variables.scss +32 -0
- data/_sass/class/addons-wrap.scss +39 -0
- data/_sass/class/admonition.scss +47 -0
- data/_sass/class/container.scss +11 -0
- data/_sass/class/content-wrap.scss +4 -0
- data/_sass/class/header.scss +10 -0
- data/_sass/class/highlight.scss +214 -0
- data/_sass/class/markdown-body.scss +63 -0
- data/_sass/class/sidebar-wrap.scss +92 -0
- data/_sass/class/title.scss +12 -0
- data/_sass/theme.scss +30 -0
- data/assets/404.liquid +3 -3
- data/assets/css/theme.min.css +1 -0
- data/assets/css/theme.scss +4 -0
- data/assets/js/mermaid.min.js +5 -5
- data/assets/js/theme.js +290 -1
- data/assets/js/theme.min.js +1 -0
- data/assets/pages.liquid +1 -1
- data/assets/search.liquid +5 -21
- data/assets/sitemap.liquid +1 -1
- data/assets/sw.caches.liquid +1 -1
- metadata +94 -57
- data/_includes/addons.liquid +0 -24
- data/_includes/addons/i18n.liquid +0 -13
- data/_includes/addons/plugins.liquid +0 -6
- data/_includes/album.liquid +0 -7
- data/_includes/assets/common.js +0 -94
- data/_includes/assets/search.js +0 -76
- data/_includes/breadcrumbs.liquid +0 -43
- data/_includes/footer.liquid +0 -37
- data/_includes/i18n/en.liquid +0 -29
- data/_includes/i18n/es.liquid +0 -29
- data/_includes/i18n/fr.liquid +0 -29
- data/_includes/i18n/it.liquid +0 -29
- data/_includes/i18n/ja.liquid +0 -29
- data/_includes/i18n/ko.liquid +0 -29
- data/_includes/i18n/ru.liquid +0 -29
- data/_includes/i18n/sv.liquid +0 -29
- data/_includes/i18n/zh-cn.liquid +0 -29
- data/_includes/reset/defaults.liquid +0 -86
- data/_includes/reset/i18n.liquid +0 -31
- data/_includes/reset/languages.liquid +0 -110
- data/_sass/_album.scss +0 -19
- data/_sass/_embed.scss +0 -23
- data/_sass/fluid.scss +0 -7
- data/_sass/jekyll-rtd-theme.scss +0 -128
- data/assets/css/rougify/base16.css +0 -1
- data/assets/css/rougify/base16.dark.css +0 -1
- data/assets/css/rougify/base16.light.css +0 -1
- data/assets/css/rougify/base16.monokai.css +0 -1
- data/assets/css/rougify/base16.monokai.dark.css +0 -1
- data/assets/css/rougify/base16.monokai.light.css +0 -1
- data/assets/css/rougify/base16.solarized.css +0 -1
- data/assets/css/rougify/base16.solarized.dark.css +0 -1
- data/assets/css/rougify/base16.solarized.light.css +0 -1
- data/assets/css/rougify/bw.css +0 -1
- data/assets/css/rougify/colorful.css +0 -1
- data/assets/css/rougify/github.css +0 -1
- data/assets/css/rougify/gruvbox.css +0 -1
- data/assets/css/rougify/gruvbox.dark.css +0 -1
- data/assets/css/rougify/gruvbox.light.css +0 -1
- data/assets/css/rougify/igorpro.css +0 -1
- data/assets/css/rougify/magritte.css +0 -1
- data/assets/css/rougify/molokai.css +0 -1
- data/assets/css/rougify/monokai.css +0 -1
- data/assets/css/rougify/monokai.sublime.css +0 -1
- data/assets/css/rougify/pastie.css +0 -1
- data/assets/css/rougify/thankful_eyes.css +0 -1
- data/assets/css/rougify/tulip.css +0 -1
- data/assets/css/theme.css +0 -4
- data/assets/js/anchor.min.js +0 -9
- data/assets/js/html5shiv.min.js +0 -4
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{%- capture custom_script -%}
|
|
2
|
+
{% include assets/custom.js %} {{ site.script }}
|
|
3
|
+
{%- endcapture -%}
|
|
4
|
+
|
|
5
|
+
{%- capture custom_scss -%}
|
|
6
|
+
{% include assets/custom.scss %} {{ site.scss }}
|
|
7
|
+
{%- endcapture -%}
|
|
8
|
+
|
|
9
|
+
{%- if custom_script -%}
|
|
10
|
+
<script>
|
|
11
|
+
{{ custom_script }}
|
|
12
|
+
</script>
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
|
|
15
|
+
{%- if custom_scss -%}
|
|
16
|
+
<style>
|
|
17
|
+
{{ custom_scss | scssify | strip_newlines }}
|
|
18
|
+
</style>
|
|
19
|
+
{%- endif -%}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{%- comment %} canonical link {% endcomment %}
|
|
2
|
+
<link rel="canonical" href="{{ schema_surl }}">
|
|
3
|
+
|
|
4
|
+
{%- if prev -%}
|
|
5
|
+
<link rel="prev" href="{{ prev.url | absolute_url }}">
|
|
6
|
+
{%- endif -%}
|
|
7
|
+
|
|
8
|
+
{%- if next -%}
|
|
9
|
+
<link rel="next" href="{{ next.url | absolute_url }}">
|
|
10
|
+
{%- endif -%}
|
|
11
|
+
|
|
12
|
+
{% comment %} theme {% endcomment %}
|
|
13
|
+
<link rel="stylesheet" href="{{ cdn }}/assets/css/theme{% if site.debug.dist != false %}.min{% endif %}.css">
|
|
14
|
+
|
|
15
|
+
{% comment %} icon {% endcomment %}
|
|
16
|
+
<link rel="icon" type="image/svg+xml" href="{{ site.baseurl }}/favicon.svg">
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<meta charset="utf-8">
|
|
2
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
3
|
+
<meta name="description" content="{{ description }}">
|
|
4
|
+
<meta name="revised" content="{{ docs.build_revision }}">
|
|
5
|
+
<meta name="author" content="{{ author }}">
|
|
6
|
+
<meta name="generator" content="jekyll-rtd-theme v{{ version }}">
|
|
7
|
+
|
|
8
|
+
{%- comment %} custom {% endcomment %}
|
|
9
|
+
{% for meta in site.meta -%}
|
|
10
|
+
<meta name="{{ meta.first }}" content="{{ meta.last }}">
|
|
11
|
+
{% endfor -%}
|
|
12
|
+
|
|
13
|
+
{% comment %} https://ogp.me {% endcomment %}
|
|
14
|
+
<meta property="og:title" content="{{ title }}">
|
|
15
|
+
<meta property="og:description" content="{{ description }}">
|
|
16
|
+
<meta property="og:locale" content="{{ lang }}">
|
|
17
|
+
<meta property="og:url" content="{{ schema_surl }}">
|
|
18
|
+
<meta property="og:type" content="article">
|
|
19
|
+
<meta property="article:author" content="{{ author }}">
|
|
20
|
+
<meta property="article:published_time" content="{{ schema_date }}">
|
|
21
|
+
<meta property="article:modified_time" content="{{ schema_modi }}">
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{%- comment %} mermaid {% endcomment -%}
|
|
2
|
+
{%- if content contains '<code class="language-mermaid">' -%}
|
|
3
|
+
{%- if site.mermaid.custom -%}
|
|
4
|
+
<script src="{{ site.mermaid.custom }}"></script>
|
|
5
|
+
{%- else -%}
|
|
6
|
+
<script src="{{ cdn }}/assets/js/mermaid.min.js"></script>
|
|
7
|
+
{%- endif %}
|
|
8
|
+
<script>
|
|
9
|
+
mermaid.initialize({% if site.mermaid.initialize %}{{ site.mermaid.initialize | jsonify }}{% else %}{}{% endif %});
|
|
10
|
+
</script>
|
|
11
|
+
{%- endif %}
|
|
12
|
+
|
|
13
|
+
{% comment %} Google Analytics {% endcomment %}
|
|
14
|
+
{%- if site.google.gtag -%}
|
|
15
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.gtag }}"></script>
|
|
16
|
+
<script>
|
|
17
|
+
window.dataLayer = window.dataLayer || [];
|
|
18
|
+
function gtag() {
|
|
19
|
+
dataLayer.push(arguments);
|
|
20
|
+
}
|
|
21
|
+
gtag("js", new Date());
|
|
22
|
+
gtag("config", "{{ site.google.gtag }}");
|
|
23
|
+
</script>
|
|
24
|
+
{%- endif -%}
|
|
25
|
+
|
|
26
|
+
{% comment %} Google AdSense {% endcomment %}
|
|
27
|
+
{%- if site.google.adsense -%}
|
|
28
|
+
<script data-ad-client="{{ site.google.adsense }}" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
29
|
+
{%- endif -%}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
window.ui = {
|
|
3
|
+
title: "{{ site.title }}",
|
|
4
|
+
lang: "{{ site.lang }}",
|
|
5
|
+
version: "{{ version }}",
|
|
6
|
+
baseurl: "{{ site.baseurl }}",
|
|
7
|
+
i18n: {
|
|
8
|
+
search_docs: "{{ __.search_docs | default: 'Search Docs' }}",
|
|
9
|
+
search_results: "{{ __.search_results | default: 'Search Results' }}",
|
|
10
|
+
search_results_found: "{{ __.search_results_found | default: 'Search finished, found # page(s) matching the search query.' }}",
|
|
11
|
+
search_results_not_found: "{{ __.search_results_not_found | default: 'Your search did not match any documents, please make sure that all characters are spelled correctly!' }}"
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
</script>
|
|
15
|
+
<script src="{{ cdn }}/assets/js/jquery.min.js"></script>
|
|
16
|
+
<script src="{{ cdn }}/assets/js/theme{% if site.debug.dist != false %}.min{% endif %}.js"></script>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<script type="application/ld+json">
|
|
2
|
+
{
|
|
3
|
+
"@context": "https://schema.org",
|
|
4
|
+
"@type": "Article",
|
|
5
|
+
"mainEntityOfPage": {
|
|
6
|
+
"@type": "WebPage",
|
|
7
|
+
"@id": "{{ schema_surl }}"
|
|
8
|
+
},
|
|
9
|
+
"headline": "{{ title }}",
|
|
10
|
+
"image": [{% for image in page.images %}"{{ image }}"{% unless forloop.last %},{% endunless %}{% endfor %}],
|
|
11
|
+
"author": {
|
|
12
|
+
"@type": "Person",
|
|
13
|
+
"name": "{{ author }}"
|
|
14
|
+
},
|
|
15
|
+
"datePublished": "{{ schema_date }}",
|
|
16
|
+
"dateModified": "{{ schema_modi }}",
|
|
17
|
+
"publisher": {
|
|
18
|
+
"@type": "{{ docs.owner.type }}",
|
|
19
|
+
"name": "{{ author }}",
|
|
20
|
+
"logo": {
|
|
21
|
+
"@type": "ImageObject",
|
|
22
|
+
"url": "{{ docs.owner.avatar_url }}"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"description": "{{ description }}"
|
|
26
|
+
}
|
|
27
|
+
</script>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<title>{{ title }}</title>
|
data/_includes/list.liquid
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{%- include
|
|
2
|
-
{%- include
|
|
1
|
+
{%- include rest/site_pages.liquid -%}
|
|
2
|
+
{%- include rest/workdir.liquid workdir=page.dir -%}
|
|
3
3
|
|
|
4
4
|
{%- for item in workdir_files %}
|
|
5
5
|
- [{{ item.title | default: item.url }}]({{ item.url | relative_url }})
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{%- include rest/site_pages.liquid -%}
|
|
2
|
+
{%- include rest/i18n.liquid -%}
|
|
3
|
+
|
|
4
|
+
{%- comment %} variables {% endcomment -%}
|
|
5
|
+
{%- assign version = "2.0.0" -%}
|
|
6
|
+
{%- assign docs = site.github -%}
|
|
7
|
+
{%- assign rest = docs.public_repositories | where: "html_url", docs.repository_url | first -%}
|
|
8
|
+
|
|
9
|
+
{%- assign rest_created_at = rest.created_at | default: site.time -%}
|
|
10
|
+
{%- assign rest_updated_at = rest.updated_at | default: site.time -%}
|
|
11
|
+
|
|
12
|
+
{%- assign lang = site.lang | default: "en" -%}
|
|
13
|
+
{%- assign author = docs.owner.name | default: docs.owner_name -%}
|
|
14
|
+
|
|
15
|
+
{%- comment %} schema {% endcomment -%}
|
|
16
|
+
{%- assign schema_date = page.date | default: rest_created_at | date_to_xmlschema -%}
|
|
17
|
+
{%- assign schema_modi = site.time | date_to_xmlschema -%}
|
|
18
|
+
{%- assign schema_surl = page.url | absolute_url | xml_escape -%}
|
|
19
|
+
|
|
20
|
+
{%- comment %} title {% endcomment -%}
|
|
21
|
+
{%- case page.url -%}
|
|
22
|
+
{%- when "/" -%}
|
|
23
|
+
{%- assign title = site.title | append: " · " | append: site.description | truncate: 110 -%}
|
|
24
|
+
{%- when "/search.html" -%}
|
|
25
|
+
{%- assign title = __.search | default: "Search" | append: " · " | append: site.title | truncate: 110 -%}
|
|
26
|
+
{%- when "/404.html" -%}
|
|
27
|
+
{%- assign title = "404" | append: " · " | append: site.title | truncate: 110 -%}
|
|
28
|
+
{%- else -%}
|
|
29
|
+
{%- assign title = page.title | default: page.url | append: " · " | append: site.title | truncate: 110 -%}
|
|
30
|
+
{%- endcase -%}
|
|
31
|
+
|
|
32
|
+
{%- comment %} description {% endcomment -%}
|
|
33
|
+
{%- assign description = content | strip_html | split: " " | join: " " | escape | truncate: 150 -%}
|
|
34
|
+
|
|
35
|
+
{% comment %} debug {% endcomment %}
|
|
36
|
+
{%- if site.debug -%}
|
|
37
|
+
{%- assign cdn = site.baseurl -%}
|
|
38
|
+
{%- else -%}
|
|
39
|
+
{%- assign cdn = "https://cdn.jsdelivr.net/gh/rundocs/jekyll-rtd-theme@" | append: version -%}
|
|
40
|
+
{%- endif -%}
|
|
41
|
+
|
|
42
|
+
{% comment %} content {% endcomment %}
|
|
43
|
+
{%- assign content = content
|
|
44
|
+
| replace: '’', "'"
|
|
45
|
+
| replace: "“", '"'
|
|
46
|
+
| replace: '”', '"'
|
|
47
|
+
| replace: "highlighter-rouge", "highlighter-rouge notranslate" -%}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
{% comment %} prev and next {% endcomment %}
|
|
51
|
+
{%- assign workdir_files = site_files | where_exp: "item", "item.dir == page.dir" -%}
|
|
52
|
+
|
|
53
|
+
{%- assign index = 0 -%}
|
|
54
|
+
{%- for item in workdir_files %}
|
|
55
|
+
{%- if item.url == page.url %}
|
|
56
|
+
{%- assign index = forloop.index -%}
|
|
57
|
+
{%- endif %}
|
|
58
|
+
{%- endfor -%}
|
|
59
|
+
|
|
60
|
+
{%- for item in workdir_files -%}
|
|
61
|
+
{%- assign index_prev = index | minus: 1 -%}
|
|
62
|
+
{%- assign index_next = index | plus: 1 -%}
|
|
63
|
+
{%- if forloop.index == index_prev -%}
|
|
64
|
+
{%- assign prev = item -%}
|
|
65
|
+
{%- endif %}
|
|
66
|
+
{%- if forloop.index == index_next -%}
|
|
67
|
+
{%- assign next = item -%}
|
|
68
|
+
{%- endif %}
|
|
69
|
+
{%- endfor -%}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{%- assign __ = site.translate | default: site.data.translate -%}
|
|
File without changes
|
|
File without changes
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
{% comment %} Start from the language chapter(eg: en-us) or root(/) {% endcomment %}
|
|
2
1
|
{%- assign workdir = include.workdir | default: "/" -%}
|
|
3
2
|
|
|
4
|
-
{%- if page.dir != "/" -%}
|
|
5
|
-
{%- assign chapter = page.dir | remove_first: "/" | split: "/" | first -%}
|
|
6
|
-
{%- if languages contains chapter -%}
|
|
7
|
-
{%- capture workdir %}/{{ chapter }}/{% endcapture -%}
|
|
8
|
-
{%- endif -%}
|
|
9
|
-
{%- endif -%}
|
|
10
|
-
|
|
11
3
|
{%- assign workdir_level = workdir | append: "temp" | replace_first: "/", "" | split: "/" | size -%}
|
|
12
4
|
{%- assign workdir_files = site_files | where_exp: "item", "item.dir == workdir" -%}
|
|
13
5
|
|
|
@@ -19,13 +11,7 @@
|
|
|
19
11
|
{%- assign dir = item.dir | replace: workdir, temp | split: "@@" | first -%}
|
|
20
12
|
{% comment %} In the current subdirectory {% endcomment %}
|
|
21
13
|
{%- if workdir == dir -%}
|
|
22
|
-
{
|
|
23
|
-
{%- if workdir == "/" -%}
|
|
24
|
-
{%- assign language = item.dir | replace: "/", "" -%}
|
|
25
|
-
{%- unless languages contains language %}{{ item.dir }}|{% endunless -%}
|
|
26
|
-
{%- else -%}
|
|
27
|
-
{{ item.dir }}|
|
|
28
|
-
{%- endif -%}
|
|
14
|
+
{{ item.dir }}|
|
|
29
15
|
{%- endif -%}
|
|
30
16
|
{%- endif -%}
|
|
31
17
|
{%- endfor -%}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div class="mermaid overflow-x-auto">{{ codes }}</div>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<div class="admonition warning box-shadow mb-3">
|
|
2
|
+
<div class="title px-2 py-1">
|
|
3
|
+
<i class="fa fa-exclamation-circle"></i>
|
|
4
|
+
{{ __.warning | default: "Warning" }}
|
|
5
|
+
</div>
|
|
6
|
+
<div class="content p-2">
|
|
7
|
+
{{ codes | markdownify | strip_newlines -}}
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
data/_layouts/default.liquid
CHANGED
|
@@ -2,246 +2,28 @@
|
|
|
2
2
|
layout: plugins/compress
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
{%- include
|
|
5
|
+
{%- include rest/defaults.liquid -%}
|
|
6
6
|
|
|
7
7
|
<!DOCTYPE html>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
function debug() {
|
|
32
|
-
console.debug.apply(console, arguments);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
gtag("js", new Date());
|
|
36
|
-
|
|
37
|
-
if ("serviceWorker" in navigator) {
|
|
38
|
-
navigator.serviceWorker.register("{{ site.baseurl }}/sw.caches.js");
|
|
39
|
-
} else {
|
|
40
|
-
debug("Service Worker not supported!");
|
|
41
|
-
}
|
|
42
|
-
</script>
|
|
43
|
-
<!-- meta -->
|
|
44
|
-
<meta name="description" content="{{ description }}">
|
|
45
|
-
<meta name="author" content="{{ author }}">
|
|
46
|
-
<meta name="revised" content="{{ commit }}">
|
|
47
|
-
<meta name="generator" content="jekyll-rtd-theme v{{ version }}">
|
|
48
|
-
<!-- meta-ogp -->
|
|
49
|
-
{% comment %} https://ogp.me {% endcomment %}
|
|
50
|
-
<meta property="og:title" content="{{ title }}">
|
|
51
|
-
<meta property="og:description" content="{{ description }}">
|
|
52
|
-
<meta property="og:locale" content="{{ lang }}">
|
|
53
|
-
<meta property="og:url" content="{{ schema_surl }}">
|
|
54
|
-
<meta property="og:type" content="article">
|
|
55
|
-
<meta property="article:author" content="{{ author }}">
|
|
56
|
-
<meta property="article:published_time" content="{{ schema_date }}">
|
|
57
|
-
<meta property="article:modified_time" content="{{ schema_modi }}">
|
|
58
|
-
<!-- meta-custom -->
|
|
59
|
-
{% for meta in site.meta -%}
|
|
60
|
-
<meta name="{{ meta.first }}" content="{{ meta.last }}">
|
|
61
|
-
{% endfor -%}
|
|
62
|
-
<!-- schema -->
|
|
63
|
-
<script type="application/ld+json">
|
|
64
|
-
{
|
|
65
|
-
"@context": "https://schema.org",
|
|
66
|
-
"@type": "Article",
|
|
67
|
-
"mainEntityOfPage": {
|
|
68
|
-
"@type": "WebPage",
|
|
69
|
-
"@id": "{{ schema_surl }}"
|
|
70
|
-
},
|
|
71
|
-
"headline": "{{ title | truncate: 110 }}",
|
|
72
|
-
"image": [{% for image in page.images %}"{{ image }}"{% unless forloop.last %},{% endunless %}{% endfor %}],
|
|
73
|
-
"author": {
|
|
74
|
-
"@type": "Person",
|
|
75
|
-
"name": "{{ author }}"
|
|
76
|
-
},
|
|
77
|
-
"datePublished": "{{ schema_date }}",
|
|
78
|
-
"dateModified": "{{ schema_modi }}",
|
|
79
|
-
"publisher": {
|
|
80
|
-
"@type": "Organization",
|
|
81
|
-
"name": "RunDocs",
|
|
82
|
-
"logo": {
|
|
83
|
-
"@type": "ImageObject",
|
|
84
|
-
"url": "https://rundocs.io/logo.png"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"description": "{{ description }}"
|
|
88
|
-
}
|
|
89
|
-
</script>
|
|
90
|
-
<!-- link -->
|
|
91
|
-
<link rel="canonical" href="{{ schema_surl }}">
|
|
92
|
-
{% if prev %}<link rel="prev" href="{{ prev.url | absolute_url }}">{% endif %}
|
|
93
|
-
{% if next %}<link rel="next" href="{{ next.url | absolute_url }}">{% endif %}
|
|
94
|
-
<!-- theme -->
|
|
95
|
-
<link rel="stylesheet" href="{{ cdn }}/assets/css/theme.css">
|
|
96
|
-
<link rel="stylesheet" href="{{ cdn }}/assets/css/rougify/{{ site.rougify | default: 'github' }}.css">
|
|
97
|
-
<style>{{ site_scss | scssify | strip_newlines }}</style>
|
|
98
|
-
<!-- icon -->
|
|
99
|
-
<link rel="icon" type="image/svg+xml" href="{{ site.baseurl }}/favicon.svg">
|
|
100
|
-
<!-- script -->
|
|
101
|
-
<!--[if lt IE 9]><script src="{{ cdn }}/assets/js/html5shiv.min.js"></script><![endif]-->
|
|
102
|
-
<script src="{{ cdn }}/assets/js/jquery.min.js"></script>
|
|
103
|
-
<script>
|
|
104
|
-
const ui = {
|
|
105
|
-
baseurl: "{{ site.baseurl }}",
|
|
106
|
-
title: "{{ site.title }}",
|
|
107
|
-
lang: "{{ lang }}",
|
|
108
|
-
admonition: {
|
|
109
|
-
note: "{{ __note }}",
|
|
110
|
-
tip: "{{ __tip }}",
|
|
111
|
-
warning: "{{ __warning }}",
|
|
112
|
-
danger: "{{ __danger }}"
|
|
113
|
-
}
|
|
114
|
-
};
|
|
115
|
-
</script>
|
|
116
|
-
{% include extra/head.html %}
|
|
117
|
-
</head>
|
|
118
|
-
|
|
119
|
-
<body class="wy-body-for-nav">
|
|
120
|
-
<div class="wy-grid-for-nav">
|
|
121
|
-
<!-- NAV -->
|
|
122
|
-
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
|
|
123
|
-
<div class="wy-side-scroll">
|
|
124
|
-
<div class="wy-side-nav-search">
|
|
125
|
-
{% if site.logo %}
|
|
126
|
-
<a href="{{ site.baseurl }}/{% if site_lang != lang %}{{ lang }}/{% endif %}">
|
|
127
|
-
<img src="{{ site.baseurl }}/{{ site.logo }}" class="logo" alt="{{ site.title }}">
|
|
128
|
-
</a>
|
|
129
|
-
{% else %}
|
|
130
|
-
<a href="{{ site.baseurl }}/{% if site_lang != lang %}{{ lang }}/{% endif %}" class="icon icon-home"> {{ site.title }}</a>
|
|
131
|
-
{% endif %}
|
|
132
|
-
<div role="search">
|
|
133
|
-
<form id="rtd-search-form" class="wy-form" action="{{ site.baseurl }}/search.html" method="get" autocomplete="off">
|
|
134
|
-
<input type="text" name="q" placeholder="{{ __search_docs }}...">
|
|
135
|
-
<input type="hidden" name="lang" value="{{ lang }}">
|
|
136
|
-
</form>
|
|
137
|
-
</div>
|
|
138
|
-
</div>
|
|
139
|
-
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">{% include toctree.liquid %}</div>
|
|
140
|
-
{%- if site.embed -%}
|
|
141
|
-
<div class="wy-embed-wrap"><div class="wy-embed">{{ site.embed }}</div></div>
|
|
142
|
-
{%- endif -%}
|
|
143
|
-
</div>
|
|
144
|
-
</nav>
|
|
145
|
-
|
|
146
|
-
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
|
|
147
|
-
<!-- MOBILE NAV -->
|
|
148
|
-
<nav class="wy-nav-top" aria-label="top navigation">
|
|
149
|
-
<div class="flex">
|
|
150
|
-
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
|
|
151
|
-
<div class="wy-nav-title">
|
|
152
|
-
<a href="{{ site.baseurl }}/{% if site_lang != lang %}{{ lang }}/{% endif %}">{{ site.title }}</a>
|
|
153
|
-
</div>
|
|
154
|
-
</div>
|
|
155
|
-
</nav>
|
|
156
|
-
<div class="wy-nav-content">
|
|
157
|
-
<div class="rst-content">
|
|
158
|
-
{% include breadcrumbs.liquid %}
|
|
159
|
-
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
|
|
160
|
-
<div itemprop="articleBody">
|
|
161
|
-
{%- if page.url == "/search.html" -%}
|
|
162
|
-
{{ content }}
|
|
163
|
-
{%- else -%}
|
|
164
|
-
<div class="section">{{ content }}</div>
|
|
165
|
-
{%- endif -%}
|
|
166
|
-
</div>
|
|
167
|
-
{% comment %} comments {% endcomment %}
|
|
168
|
-
{% if site.disqus %}
|
|
169
|
-
<div id="disqus_thread" class="articleComments"></div>
|
|
170
|
-
<script>
|
|
171
|
-
(function(script) {
|
|
172
|
-
script.src = "https://{{ site.disqus }}.disqus.com/embed.js";
|
|
173
|
-
script.setAttribute("data-timestamp", +new Date());
|
|
174
|
-
document.head.appendChild(script);
|
|
175
|
-
})(document.createElement("script"));
|
|
176
|
-
</script>
|
|
177
|
-
{% endif %}
|
|
178
|
-
</div>
|
|
179
|
-
{% include footer.liquid %}
|
|
180
|
-
</div>
|
|
181
|
-
</div>
|
|
182
|
-
</section>
|
|
183
|
-
</div>
|
|
184
|
-
{%- if site.addons %}{% include addons.liquid %}{% endif %}
|
|
185
|
-
{% include extra/footer.html %}
|
|
186
|
-
<!-- script -->
|
|
187
|
-
<script src="{{ cdn }}/assets/js/theme.js"></script>
|
|
188
|
-
<script src="{{ cdn }}/assets/js/anchor.min.js"></script>
|
|
189
|
-
|
|
190
|
-
{% comment %} mermaid {% endcomment %}
|
|
191
|
-
{%- if content contains '<pre class="notranslate language-mermaid">' -%}
|
|
192
|
-
{%- if site.mermaid.custom -%}
|
|
193
|
-
<script src="{{ site.mermaid.custom }}"></script>
|
|
194
|
-
{%- else -%}
|
|
195
|
-
<script src="{{ cdn }}/assets/js/mermaid.min.js"></script>
|
|
196
|
-
{%- endif %}
|
|
197
|
-
<script>
|
|
198
|
-
mermaid.initialize({% if site.mermaid.initialize %}{{ site.mermaid.initialize | jsonify }}{% else %}{}{% endif %});
|
|
199
|
-
</script>
|
|
200
|
-
{%- endif %}
|
|
201
|
-
<script>
|
|
202
|
-
{% include assets/common.js %}
|
|
203
|
-
{% include assets/custom.js %} {{ site.script }}
|
|
204
|
-
</script>
|
|
205
|
-
|
|
206
|
-
{% comment %} Baidu link submit {% endcomment %}
|
|
207
|
-
{%- if site.baidu.linksubmit -%}
|
|
208
|
-
<script>
|
|
209
|
-
(function(script) {
|
|
210
|
-
script.src = "https://zz.bdstatic.com/linksubmit/push.js";
|
|
211
|
-
document.head.appendChild(script);
|
|
212
|
-
})(document.createElement("script"));
|
|
213
|
-
</script>
|
|
214
|
-
{%- endif -%}
|
|
215
|
-
|
|
216
|
-
{% comment %} Baidu Analytics {% endcomment %}
|
|
217
|
-
{%- if site.baidu.hm -%}
|
|
218
|
-
<script>
|
|
219
|
-
var _hmt = _hmt || [];
|
|
220
|
-
(function(script) {
|
|
221
|
-
script.src = "https://hm.baidu.com/hm.js?{{ site.baidu.hm }}";
|
|
222
|
-
document.head.appendChild(script);
|
|
223
|
-
})(document.createElement("script"));
|
|
224
|
-
</script>
|
|
225
|
-
{%- endif -%}
|
|
226
|
-
|
|
227
|
-
{% comment %} CNZZ Analytics {% endcomment %}
|
|
228
|
-
{%- if site.cnzz -%}
|
|
229
|
-
<span id="cnzz_stat_icon_{{ site.cnzz }}" style="display: none;"></span>
|
|
230
|
-
<script async src="https://v1.cnzz.com/z_stat.php?id={{ site.cnzz }}"></script>
|
|
231
|
-
{%- endif -%}
|
|
232
|
-
|
|
233
|
-
{% comment %} Google Analytics {% endcomment %}
|
|
234
|
-
{%- if site.google.gtag -%}
|
|
235
|
-
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.gtag }}"></script>
|
|
236
|
-
<script>
|
|
237
|
-
gtag("config", "{{ site.google.gtag }}");
|
|
238
|
-
</script>
|
|
239
|
-
{%- endif -%}
|
|
240
|
-
|
|
241
|
-
{% comment %} Google AdSense {% endcomment %}
|
|
242
|
-
{%- if site.google.adsense -%}
|
|
243
|
-
<script data-ad-client="{{ site.google.adsense }}" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
244
|
-
{%- endif -%}
|
|
245
|
-
</body>
|
|
246
|
-
|
|
8
|
+
<html lang="{{ site.lang }}">
|
|
9
|
+
<head>
|
|
10
|
+
{%- include head/metadata.liquid -%}
|
|
11
|
+
|
|
12
|
+
{%- include head/title.liquid -%}
|
|
13
|
+
{%- include head/links.liquid -%}
|
|
14
|
+
|
|
15
|
+
{%- include head/script.schema.liquid -%}
|
|
16
|
+
{%- include head/script.liquid -%}
|
|
17
|
+
{%- include head/custom.liquid -%}
|
|
18
|
+
{%- include head/script.extension.liquid -%}
|
|
19
|
+
|
|
20
|
+
{%- include extra/head.html -%}
|
|
21
|
+
</head>
|
|
22
|
+
<body class="container">
|
|
23
|
+
{%- include class/sidebar-wrap.liquid -%}
|
|
24
|
+
{%- include class/content-wrap.liquid -%}
|
|
25
|
+
{%- include class/addons-wrap.liquid -%}
|
|
26
|
+
|
|
27
|
+
{%- include extra/footer.html -%}
|
|
28
|
+
</body>
|
|
247
29
|
</html>
|