<meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="UTF-8"> <link rel="stylesheet" href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css"/> <!-- FontAwesome --> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <!-- CustomCSS --> {{ range .Site.Params.customCSS }} {{ if isset . "href" }} <link {{ if not (isset . "rel") }}rel="stylesheet" {{ end }}{{ range $key, $value := . }} {{ if eq $key "href" }}{{ (printf "%s=\"%s\"" $key ($value | absURL)) | safeHTMLAttr }}{{ else }}{{ (printf "%s=\"%s\"" $key (string $value)) | safeHTMLAttr }}{{ end }}{{ end }}> {{ else }} <link rel="stylesheet" href="{{ . | absURL }}"> {{ end }} {{ end }} <!-- Highligth.js --> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/zenburn.min.css"> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> <script>hljs.initHighlightingOnLoad();</script> <!-- Mathjax --> <script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML' async></script> <!-- CSS --> <style> a { text-decoration: none; color: #357edd; } #sidebar { text-shadow: 1px 1px 1px #111; } .post-header { text-shadow: 1px 2px 1px rgba(0,0,0,0.9); } pre { background: #3f3f3f; color: #dcdcdc; padding: 0.5em;} </style> <script> function w3_open() { document.getElementById("sidebar").style.display = "block"; } function w3_close() { document.getElementById("sidebar").style.display = "none"; } </script>