Skip to content

Commit ce39e17

Browse files
committed
feat: add meta tags
1 parent 914f911 commit ce39e17

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

www/src/template.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="author" content="xlcdev" />
7+
<meta name="theme-color" content="#0A0F2A" />
8+
<meta
9+
name="description"
10+
content="Nova is a flexible Go framework for building RESTful APIs and web UIs with sensible defaults, routing, middleware, OpenAPI, and templating."
11+
/>
12+
<meta property="og:type" content="website" />
13+
<meta property="og:url" content="https://xlc-dev.github.io/nova/" />
14+
<meta property="og:image" content="{{BASE_URL}}/static/img/nova.png" />
15+
<meta
16+
property="og:title"
17+
content="Nova - Build Powerful Web Applications in Go"
18+
/>
19+
<meta
20+
property="og:description"
21+
content="Nova is a flexible Go framework for building RESTful APIs and web UIs with sensible defaults, routing, middleware, OpenAPI, and templating."
22+
/>
23+
<meta
24+
property="og:site_name"
25+
content="Nova - Build Powerful Web Applications in Go"
26+
/>
27+
28+
<meta name="twitter:card" content="summary_large_image" />
29+
<meta name="twitter:url" content="https://xlc-dev.github.io/nova/" />
30+
<meta
31+
name="twitter:title"
32+
content="Nova - Build Powerful Web Applications in Go"
33+
/>
34+
<meta
35+
name="twitter:description"
36+
content="Nova is a flexible Go framework for building RESTful APIs and web UIs with sensible defaults, routing, middleware, OpenAPI, and templating."
37+
/>
38+
<meta name="twitter:image" content="{{BASE_URL}}/static/img/nova.png" />
639
<link
740
rel="shortcut icon"
841
href="{{BASE_URL}}/static/img/favicon.png"

0 commit comments

Comments
 (0)