blog/themes/chosto/layouts/partials/head.html

17 lines
679 B
HTML

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ $styleBulma := resources.Get "css/bulma.min.css" }}
{{ $styleCustom := resources.Get "css/custom.css" }}
<link rel="stylesheet" href="{{ $styleBulma.Permalink }}">
<link rel="stylesheet" href="{{ $styleCustom.Permalink }}">
<!-- tbh I am too lazy to extend Bulma, so put dirty CSS directives here to be able to use Hugo templating system -->
<style>
{{ $bg := resources.Get "img/hero_home.png" }}
.has-bg-img { background: url('{{ $bg.Permalink }}')center center; background-size:cover; }
</style>
<title>
{{ .Site.Title }}
</title>
</head>