2020-01-12 14:14:15 +01:00
|
|
|
<head>
|
2020-02-09 12:20:47 +01:00
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<meta charset="utf-8">
|
2020-03-05 11:39:53 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-02-09 12:20:47 +01:00
|
|
|
{{ with .Site.Params.author }}
|
|
|
|
<meta name="author" content="{{ . }}">
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.site_description }}
|
|
|
|
<meta name="description" content="{{ . }}">
|
|
|
|
{{ end }}
|
2020-01-12 14:14:15 +01:00
|
|
|
|
2022-08-08 21:00:45 +02:00
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/jquery/dist/jquery.min.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/bootstrap/js/dropdowns-enhancement.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/bluebird/js/browser/bluebird.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/talaria/dist/talaria.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/d3/d3.min.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/cal-heatmap/cal-heatmap.min.js"></script>
|
|
|
|
<script src="{{ .Site.BaseURL }}/bower_components/highlightjs/highlight.pack.min.js"></script>
|
2020-06-06 02:32:29 +02:00
|
|
|
<script>
|
|
|
|
hljs.initHighlightingOnLoad();
|
|
|
|
</script>
|
2020-02-09 12:20:47 +01:00
|
|
|
<script type="text/x-mathjax-config">
|
2020-01-12 14:14:15 +01:00
|
|
|
MathJax.Hub.Config({
|
|
|
|
tex2jax: {
|
|
|
|
inlineMath: [['$','$'], ['\\(','\\)']]}
|
|
|
|
});
|
2020-02-09 12:20:47 +01:00
|
|
|
</script>
|
2020-01-12 14:14:15 +01:00
|
|
|
|
2022-08-08 21:00:45 +02:00
|
|
|
<link rel="icon" href="{{ .Site.BaseURL }}/favicon.ico" />
|
|
|
|
<link rel="apple-touch-icon" href="{{ .Site.BaseURL }}/apple-touch-icon.png" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/highlightjs/styles/monokai.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/bootstrap/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/bootstrap/css/dropdowns-enhancement.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/talaria/dist/talaria.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/createjs/createjs.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/font-awesome/css/font-awesome.min.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/icomoon/css/icomoon.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/bower_components/cal-heatmap/cal-heatmap.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css" />
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/mobile.css" />
|
2020-06-06 02:32:29 +02:00
|
|
|
</head>
|