@creativebulma/bulma-divider
Version:
Easily display an horizontal or vertical divider with optional text.
34 lines (25 loc) • 1 kB
HTML
<html lang="{{ $.Site.Language.Lang }}">
<head>
<base href="{{ $.Site.BaseURL }}">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{{ block "meta_tags" . }}{{end}}
<title>{{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
<link rel="icon" href="{{ "favicon.png" | absURL}}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
<link rel="stylesheet" href="{{ "css/docs.css" | relURL }}" />
</head>
<body class='{{ block "body_classes" . }}{{ end }}'>
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">Page not found</p>
<p class="subtitle">
</p>
</div>
</div>
</section>
</body>
</html>