-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 3.09 KB
/
Copy pathindex.html
File metadata and controls
71 lines (71 loc) · 3.09 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="application-name" content="Make Bold Spark" />
<meta name="theme-color" content="#040605" />
<meta
name="description"
content="BootstrapSpark - A portfolio and Bootstrap showcase with interactive demos and data tables. Created by Mark Hazleton."
/>
<meta
name="keywords"
content="BootstrapSpark, Bootstrap, React, TypeScript, Vite, Mark Hazleton, SPA, Web Development"
/>
<meta name="author" content="Mark Hazleton" />
<meta property="og:site_name" content="Make Bold Spark" />
<meta property="og:title" content="BootstrapSpark - Portfolio and Bootstrap Showcase" />
<meta
property="og:description"
content="BootstrapSpark is a high-performance single-page app combining portfolio content with Bootstrap showcase examples and interactive data experiences."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://Bootstrap.makeboldspark.com" />
<meta property="og:image" content="/assets/img/controlorigins.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BootstrapSpark - Portfolio and Bootstrap Showcase" />
<meta
name="twitter:description"
content="BootstrapSpark is an elegant SPA with portfolio content, Bootstrap demos, and interactive tables."
/>
<meta name="twitter:image" content="/assets/img/controlorigins.jpg" />
<link rel="canonical" href="https://Bootstrap.makeboldspark.com" />
<!-- Make Bold Spark favicon -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/assets/favicon/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/assets/favicon/apple-touch-icon.png" />
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
<title>BootstrapSpark - Portfolio and Bootstrap Showcase</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RY77Z11S9E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-RY77Z11S9E");
</script>
<!-- Structured data for better search engine understanding -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "BootstrapSpark",
"applicationCategory": "DeveloperApplication",
"author": {
"@type": "Person",
"name": "Mark Hazleton"
},
"url": "https://Bootstrap.makeboldspark.com",
"sameAs": ["https://markhazleton.com"],
"description": "BootstrapSpark is an elegant SPA that combines portfolio content with Bootstrap showcase pages and interactive data tables."
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>