mirror of
https://github.com/skidoodle/pastebin
synced 2026-04-28 11:17:41 +02:00
20 lines
439 B
HTML
20 lines
439 B
HTML
{{ define "base" }}
|
|
<!DOCTYPE html>
|
|
<html lang="zxx">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .Title }}</title>
|
|
<link rel="stylesheet" href="/static/github-dark.min.css">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<script src="/static/highlight.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
{{ template "content" . }}
|
|
</body>
|
|
|
|
</html>
|
|
{{ end }}
|