-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (47 loc) · 1.67 KB
/
index.html
File metadata and controls
55 lines (47 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- && Website info
================= -->
<title>Your Website | Superbro Minimalistic grid template</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="author" content="">
<!-- && Mobile Meta (viewport)
================= -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- && CSS files
================= -->
<link rel="stylesheet" href="css/settings.css">
<link rel="stylesheet" href="css/core.css">
<link rel="stylesheet" href="css/yoursite-example.css">
<link rel="stylesheet" href="css/grid.css">
<!-- && Favicon
================= -->
<link rel="icon" type="image/png" href="img/favicon.ico">
<!-- && IE support
================= -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<style>
</style>
</head>
<body>
<!-- && Start your website here, by replacing the code below.
================= -->
<main>
<div class="grid">
<div class="item span6">
<h3>This is the start</h3>
<p>Thanks for deciding to use SuperBro in your project. This is just placeholder and you can start your own website / project by replacing this. If you need help you can check our documentation at <a href="https://superbro.dev">SuperBro website</a>.</p>
</div>
<div class="item span6">
<h3>Need help?</h3>
<p>Visit github to open issue.</p>
<a href="https://github.com/eync/superbro/" class="button">GitHub</a>
<a href="https://superbro.dev/" class="button">Superbro Website</a>
</div>
</div>
</main>
</body>
</html>