generated from mchmarny/gorunstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
executable file
·33 lines (27 loc) · 1.04 KB
/
header.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{ define "header" }}
<!DOCTYPE html>
<html lang="en">
<head>
<title>LogoID - Cloud Run Logo Identifier App with Google OAuth2 and Cloud Firestore persistence</title>
<meta charset="UTF-8">
<meta name="description"
content="LogoID - Cloud Run Logo Identifier App with Google OAuth2 and Cloud Firestore persistence">
<meta name="keywords" content="cloud run, google, oauth, vision, firestore, golang, knative">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="static/img/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="static/css/app.css" />
<script src="static/js/lib.js"></script>
<script src="static/js/app.js"></script>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<div id="page-header">
<div id="page-header-image">
<img src="static/img/google-cloud-run-logo.png" />
</div>
<div id="page-header-title">
Logo Identifier
</div>
</div>
{{end}}