25 lines
707 B
Go Template
25 lines
707 B
Go Template
{{define "components/Head.gohtml"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en" style="scroll-behavior: smooth">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link
|
|
rel="icon"
|
|
href="https://res.cloudinary.com/dadobos/image/upload/v1642766520/web/favicon_ugvc88.ico"
|
|
type="image/x-icon"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
|
|
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<title>Pokemon Go Templates</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{ end }}
|
|
|