File indexing completed on 2024-11-24 03:55:53
0001 <!DOCTYPE html> 0002 <html lang="en" prefix="og: http://ogp.me/ns#"> 0003 <head> 0004 <meta charset="utf-8"> 0005 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 0006 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 0007 {% if config.site_author %}<meta name="author" content="{{ config.site_author }}">{% endif %} 0008 {% if page.canonical_url %}<link rel="canonical" href="{{ page.canonical_url }}">{% endif %} 0009 <link rel="shortcut icon" href="{{ 'img/favicon.png'|url }}"> 0010 0011 {% block htmltitle %} 0012 <title>{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}</title> 0013 {% endblock %} 0014 0015 {% if page and page.meta.description %} 0016 <meta name="description" content="{{ page.meta.description }}"> 0017 {% elif config.site_description %}<meta name="description" content="{{ config.site_description }}">{% endif %} 0018 0019 {% if page and page.meta.photo %} 0020 <meta name="twitter:card" content="summary_large_image" /> 0021 <meta property='og:type' content='photo'/> 0022 <meta property='og:image' content='{{ page.meta.photo|canonical_url }}'/> 0023 {% endif %} 0024 0025 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/all.css"> 0026 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css"> 0027 <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.min.css"> 0028 <link href='//rsms.me/inter/inter.css' rel='stylesheet' type='text/css'> 0029 <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,600,700&subset=latin-ext,latin' rel='stylesheet' type='text/css'> 0030 <link href="https://fonts.googleapis.com/css2?family=Dongle:wght@400;700&apm;display=swap" rel="stylesheet"> 0031 <link href="{{ 'css/bootstrap-custom.min.css'|url }}" rel="stylesheet"> 0032 <link href="{{ 'css/base.min.css'|url }}" rel="stylesheet"> 0033 <link href="{{ 'css/cinder.min.css'|url }}" rel="stylesheet"> 0034 0035 {% if config.theme.highlightjs is defined and config.theme.highlightjs is sameas false %} 0036 0037 {% else %} 0038 {% if config.theme.colorscheme %} 0039 <link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.18.0/build/styles/{{ config.theme.colorscheme }}.min.css"> 0040 {% else %} 0041 <link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.18.0/build/styles/github.min.css"> 0042 {% endif %} 0043 {% endif %} 0044 0045 {%- for path in config['extra_css'] %} 0046 <link href="{{ path|url }}" rel="stylesheet"> 0047 {%- endfor %} 0048 0049 <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> 0050 <!--[if lt IE 9]> 0051 <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script> 0052 <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script> 0053 <![endif]--> 0054 0055 {% if config.google_analytics %} 0056 <script> 0057 (function(i, s, o, g, r, a, m) { 0058 i['GoogleAnalyticsObject'] = r; 0059 i[r] = i[r] || function() { 0060 (i[r].q = i[r].q || []).push(arguments) 0061 }, i[r].l = 1 * new Date(); 0062 a = s.createElement(o), 0063 m = s.getElementsByTagName(o)[0]; 0064 a.async = 1; 0065 a.src = g; 0066 m.parentNode.insertBefore(a, m) 0067 })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); 0068 0069 ga('create', '{{ config.google_analytics[0] }}', '{{ config.google_analytics[1] }}'); 0070 ga('send', 'pageview'); 0071 </script> 0072 {% endif %} 0073 0074 {% block extrahead %} {% endblock %} 0075 </head> 0076 0077 <body{% if page and page.is_homepage %} class="homepage" {% endif %}> 0078 0079 {% include "nav.html" %} 0080 0081 <div class="container"> 0082 {% block content %} 0083 {% if page.meta.disable_toc %} 0084 <div class="col-md-12" role="main">{% include "content.html" %}</div> 0085 {% else %} 0086 <div class="col-md-3">{% include "toc.html" %}</div> 0087 <div class="col-md-9" role="main">{% include "content.html" %}</div> 0088 {% endif %} 0089 {% endblock %} 0090 </div> 0091 0092 {% if not config.theme.disable_footer %} 0093 <footer class="col-md-12 text-center"> 0094 {% block footer %} 0095 {% if not config.theme.disable_footer_except_revision %} 0096 <hr> 0097 <p>{% if config.copyright %} 0098 <small>{{ config.copyright }}</small><br> 0099 {% endif %} 0100 <small>Documentation built with <a href="http://www.mkdocs.org/">MkDocs</a>.</small> 0101 </p> 0102 {% endif %} 0103 0104 {% if page and page.meta.revision_date %} 0105 {% if config.theme.disable_footer_except_revision %}<hr>{% else %}<br>{% endif %} 0106 <small>Revised on: {{ page.meta.revision_date }}</small> 0107 {% endif %} 0108 {% endblock %} 0109 </footer> 0110 {% endif %} 0111 0112 {%- block scripts %} 0113 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> 0114 <script src="{{ 'js/bootstrap-3.0.3.min.js'|url }}"></script> 0115 0116 {% if config.theme.highlightjs is defined and config.theme.highlightjs is sameas false %} <!-- default is to include highlightjs --> 0117 0118 {% else %} 0119 <script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.18.0/build/highlight.min.js"></script> 0120 {% if config.theme.hljs_languages %} 0121 {%- for lang in config.theme.hljs_languages %} 0122 <script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.18.0/build/languages/{{lang}}.min.js"></script> 0123 {%- endfor %} 0124 {% endif %} 0125 <script>hljs.initHighlightingOnLoad();</script> 0126 {% endif %} 0127 0128 <script>var base_url = {{ base_url | tojson }}</script> 0129 {% if config.shortcuts %} 0130 <script>var shortcuts = {{ config.shortcuts | tojson }}</script> 0131 {% endif %} 0132 <script src="{{ 'js/base.js'|url }}"></script> 0133 {%- for path in config['extra_javascript'] %} 0134 <script src="{{ path|url }}"></script> 0135 {%- endfor %} 0136 {%- endblock %} 0137 0138 {% if 'search' in config['plugins'] %}{%- include "search-modal.html" %}{% endif %} 0139 {%- include "keyboard-modal.html" %} 0140 </body> 0141 0142 </html> 0143 {% if page and page.is_homepage %} 0144 <!-- 0145 MkDocs version : {{ mkdocs_version }} 0146 Build Date UTC : {{ build_date_utc }} 0147 --> 0148 {% endif %}