blockbook/static/templates/base.html

23 lines
600 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no">
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{{.CoinLabel}} Explorer">
<title>{{.CoinLabel}} Explorer</title>
</head>
<body>
<main id="wrap">
<div class="container">
{{- template "specific" . -}}
</div>
</main>
</body>
</html>