website/themes/hugo-theme-wave/layouts/partials/head.html
Paul Lecuq 26f1f90c1d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
cleaned website stylesheets, reactivated ip address ws on artible pages
2020-06-06 02:32:29 +02:00

44 lines
2.4 KiB
HTML

<head>
<title>{{ .Title }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ with .Site.Params.author }}
<meta name="author" content="{{ . }}">
{{ end }}
{{ with .Site.Params.site_description }}
<meta name="description" content="{{ . }}">
{{ end }}
<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>
<script src="{{ .Site.BaseURL }}bower_components/vue/vue.min.js"></script>
<script src="{{ .Site.BaseURL }}bower_components/axios/axios.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<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" />
</head>