-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (91 loc) · 4.56 KB
/
index.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 5 with Vite Starter by Saqib Islam</title>
<meta name="description" content="Explore the power of the Bootstrap 5 Vite Starter Pack, a solution for efficient responsive web development. Created and maintained by Saqib Islam, this starter pack is your gateway to rapid development and modern design practices.">
<meta name="author" content="Saqib Islam">
<link rel="icon" type="image/svg+xml" href="/logo.svg">
</head>
<body>
<div class="container py-4 px-3 mx-auto">
<header class="d-flex justify-content-between align-items-center pb-3 mb-5 border-bottom">
<h1>
<a href="#" class="d-flex align-items-center text-dark text-decoration-none d-flex gap-2">
<img src="./vite.svg" alt="Vite Logo" width="32" height="32">
<span> + </span>
<img src="./bootstrap.svg" alt="Bootstrap Logo" width="32" height="32">
<span> + </span>
<img src="/logo.svg" alt="Saqib Logo" height="46" width="46">
</a>
</h1>
<a href="https://github.com/saaqi/Bootstrap-Vite-Starter">View on GitHub</a>
</header>
<h1>Build Bootstrap with Vite</h1>
<div class="col-lg-8 px-0">
<p class="fs-4">
You've successfully loaded the Bootstrap + Vite starter pack! It's
loaded up with <a href="https://getbootstrap.com/" rel="nofollow" target="_blank">Bootstrap 5</a> and
uses Vite to compile and bundle Bootstrap's Sass and JavaScript.
</p>
<p class="">
If <span class="text-brand-primary">Brand Primary Button</span> button appears dark blue,
<span class="text-brand-accent">Example Popover</span> link appears orange. &
<span class="text-brand-secondary">Brand Secondary button</span> appears yellow, it's working!
</p>
<div class="brand-button d-flex flex-wrap gap-3 mb-3 justify-content-start w-auto">
<button class="btn btn-brand-primary">Brand Primary</button>
<button class="btn btn-brand-accent">Brand Accent</button>
<button class="btn btn-brand-secondary border-1 border-brand-primary">Brand Secondary</button>
</div>
</div>
<button type="button" class="btn btn-primary me-3" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample">
Toggle offcanvas
</button>
<a id="popoverButton" class="text-info fw-bold" role="button" data-bs-toggle="popover" title="Custom popover" data-bs-content="This is a Bootstrap popover.">Example popover</a>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasExample" aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasExampleLabel">Offcanvas</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div>
Some text as placeholder. In real life you can have the elements you
have chosen. Like, text, images, lists, etc.
</div>
<div class="dropdown mt-3">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-bs-toggle="dropdown">
Dropdown button
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</div>
</div>
</div>
<hr class="col-1 my-5 mx-0" />
<h2>Guides:</h2>
<p>
Read more detailed instructions and documentation on using thid starter
pack.
</p>
<ul class="icon-list">
<li>
<a href="https://github.com/saaqi/Bootstrap-Vite-Starter">My Bootstrap Vite guide</a>
</li>
<li>
<a href="https://getbootstrap.com/docs/" rel="nofollow" target="_blank">Official Bootstrap quick start guide</a>
</li>
</ul>
<hr class="mt-5 mb-4">
<div class="text-muted">
Created By
<a href="https://saqibtech.com/" title="Saqib Islam - UI/UX Designer & Fullstack Developer">Saqib Islam</a>. Licensed MIT
</div>
<script type="module" src="./src/main.js"></script>
</div>
</body>
</html>