43 lines
2.4 KiB
HTML
43 lines
2.4 KiB
HTML
<!-- Metadata, OpenGraph and Schema.org -->
|
|
{% include metadata.html %}
|
|
|
|
<!-- Bootstrap & MDB -->
|
|
<link rel="stylesheet" href="{{ '/assets/css/bootstrap.min.css' | relative_url | bust_file_cache }}">
|
|
<!-- <link rel="stylesheet" href="{{ '/assets/css/mdb.min.css' | relative_url | bust_file_cache }}"> -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mdbootstrap@{{ site.mdb.version }}/css/mdb.min.css" integrity="{{ site.mdb.integrity.css }}" crossorigin="anonymous" />
|
|
|
|
<!-- Bootstrap Table -->
|
|
<link defer rel="stylesheet" href="https://unpkg.com/bootstrap-table@{{ site.bootstrap-table.version }}/dist/bootstrap-table.min.css">
|
|
|
|
<!-- Fonts & Icons -->
|
|
<link rel="stylesheet" href="{{ '/assets/css/academicons.min.css' | relative_url | bust_file_cache }}">
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons">
|
|
|
|
<!-- Code Syntax Highlighting -->
|
|
<link rel="stylesheet" href="{{ '/assets/css/jekyll-pygments-themes-github.css' | relative_url | bust_file_cache }}" media="" id="highlight_theme_light" />
|
|
|
|
{% if page.toc and page.toc.sidebar %}
|
|
<!-- Sidebar Table of Contents -->
|
|
<link href="{{ '/assets/css/bootstrap-toc.min.css' | relative_url | bust_file_cache }}" rel="stylesheet" />
|
|
{% endif %}
|
|
|
|
{% if page.tikzjax %}
|
|
<link defer rel="stylesheet" type="text/css" href="https://tikzjax.com/v1/fonts.css">
|
|
<script defer src="https://tikzjax.com/v1/tikzjax.js"></script>
|
|
{% endif %}
|
|
|
|
<!-- Styles -->
|
|
{% if site.icon.size <= 4 %}
|
|
<link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{ site.icon }}</text></svg>">
|
|
{% elsif site.icon != blank %}
|
|
<link rel="shortcut icon" href="{{ site.icon | prepend: '/assets/img/' | relative_url | bust_file_cache}}"/>
|
|
{% endif %}
|
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url | bust_css_cache }}">
|
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
|
|
<!-- Dark Mode -->
|
|
{% if site.enable_darkmode %}
|
|
<link rel="stylesheet" href="{{ '/assets/css/jekyll-pygments-themes-native.css' | relative_url | bust_file_cache }}" media="none" id="highlight_theme_dark" />
|
|
<script src="{{ '/assets/js/theme.js' | relative_url | bust_file_cache }}"></script>
|
|
{% endif %}
|