Skip to content

Commit d4120a5

Browse files
author
Grzegorz Bujański
committed
release: 6.1.0
1 parent e3b0ee6 commit d4120a5

File tree

126 files changed

+237
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+237
-257
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MDB5
2-
Version: FREE 6.0.1
2+
Version: FREE 6.1.0
33

44
Documentation:
55
https://mdbootstrap.com/docs/standard/

css/mdb.dark.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.rtl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 46 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,52 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
4-
<head>
5-
<meta charset="UTF-8" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
7-
<meta http-equiv="x-ua-compatible" content="ie=edge" />
8-
<title>Material Design for Bootstrap</title>
9-
<!-- MDB icon -->
10-
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
11-
<!-- Font Awesome -->
12-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
13-
<!-- Google Fonts Roboto -->
14-
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
15-
<!-- MDB -->
16-
<link rel="stylesheet" href="css/mdb.min.css" />
17-
</head>
18-
19-
<body>
20-
<!-- Start your project here-->
21-
<div class="container">
22-
<div class="d-flex justify-content-center align-items-center" style="height: 100vh">
23-
<div class="text-center">
24-
<img class="mb-4" src="https://v1.mdbootstrap.com/wp-content/uploads/2022/11/mdb-sale.png" />
25-
<h5 class="mb-4">Only now, you can get all premium features & more with the best discounts of the year.</h5>
26-
27-
<p class="mb-4 fw-bold">All offers are LIMITED!</p>
28-
<a class="btn btn-lg btn-danger fw-bold mb-3" style="background-color: #e70808;"
29-
href="https://mdbootstrap.com/sale/november/" target="_blank" role="button">Check insane offers</a>
30-
<hr>
31-
<p class="mt-4 lead fw-bold">Publish your project with a single command.</p>
32-
<p class="mt-2">Use <a href="https://mdbgo.com/" class="fw-bold" target="_blank"><u>MDB GO</u></a> for a free
33-
hosting & deployment
34-
tool</p>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
6+
<meta http-equiv="x-ua-compatible" content="ie=edge" />
7+
<title>Material Design for Bootstrap</title>
8+
<!-- MDB icon -->
9+
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
10+
<!-- Font Awesome -->
11+
<link
12+
rel="stylesheet"
13+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
14+
/>
15+
<!-- Google Fonts Roboto -->
16+
<link
17+
rel="stylesheet"
18+
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
19+
/>
20+
<!-- MDB -->
21+
<link rel="stylesheet" href="css/mdb.min.css" />
22+
</head>
23+
<body>
24+
<!-- Start your project here-->
25+
<div class="container">
26+
<div class="d-flex justify-content-center align-items-center" style="height: 100vh">
27+
<div class="text-center">
28+
<img
29+
class="mb-4"
30+
src="https://mdbootstrap.com/img/logo/mdb-transparent-250px.png"
31+
style="width: 250px; height: 90px"
32+
/>
33+
<h5 class="mb-3">Thank you for using our product. We're glad you're with us.</h5>
34+
<p class="mb-3">MDB Team</p>
35+
<a
36+
class="btn btn-primary btn-lg"
37+
href="https://mdbootstrap.com/docs/standard/getting-started/"
38+
target="_blank"
39+
role="button"
40+
>Start MDB tutorial</a
41+
>
42+
</div>
3543
</div>
3644
</div>
37-
</div>
38-
<!-- End your project here-->
39-
40-
<!-- MDB -->
41-
<script type="text/javascript" src="js/mdb.min.js"></script>
42-
<!-- Custom scripts -->
43-
<script type="text/javascript"></script>
44-
</body>
45+
<!-- End your project here-->
4546

47+
<!-- MDB -->
48+
<script type="text/javascript" src="js/mdb.min.js"></script>
49+
<!-- Custom scripts -->
50+
<script type="text/javascript"></script>
51+
</body>
4652
</html>

0 commit comments

Comments
 (0)