-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
106 lines (87 loc) · 4.26 KB
/
about.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
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- BUTTER CAKE CSS -->
<link rel="stylesheet" href="dist/butterCake.css">
<title>Jam Project by Butter Cake css Framework</title>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar expand-md default-nav bg-gradient bg-primary fixed-top">
<div class="container">
<!-- LOGO -->
<div class="brand">
<a href="#">Jam <strong>Theme</strong></a>
</div>
<!-- NAVBAR -->
<div class="menu-box" id="mainNav1">
<!-- CLOSE BUTTON | MOBILE-->
<div class="menu-close"><i class="fa fa-close"></i></div>
<!-- MENU -->
<ul class="menu ml-auto">
<li><a href="index.html">Home</a></li>
<li><a href="docs.html">Docs</a></li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="https://github.com/HimasRafeek/jam-theme" target="_blank" class="btn-primary btn-sm outline">DOWNLOAD</a></li>
</ul>
</div>
<!-- TOGGLER | MOBILE -->
<button class="toggler bg-secondary text-white " data-nav="#mainNav1"><i class="fa fa-bars "></i></button>
</div>
</nav>
<!-- JUMBOTRON -->
<div class="jumbotron fluid bg-gradient main-hero">
<div class="container pt-5">
<h1 class="display-4 text-center text-white mb-2 weight-700 hero-title">About Jam</h1>
</div>
</div>
<!-- MESSAGE -->
<p class="bg-dark m-0 text-white py-2 text-center">All <strong>Butter Cake</strong> Components and Utilities
Available on this <strong>Theme</strong>,
Learn More on -
<a href="#!">Butter Cake Official Website</a>
<br>
<strong class="weight-600">Feel Free to give a star on <a href="https://github.com/HimasRafeek/jam-theme"
target="_blank">Github</a>.</strong>
</p>
<div class="container py-3">
<p class="text-center">This is a plain HTML template built with <a href="https://getbuttercake.com/?ref=jamTheme"
target="_blank">Butter Cake Framework</a>, created by <a href="https://github.com/HimasRafeek" target="_blank">Himas
Rafeek</a>. this theme is free to use and modify, appreciate if you keep the <strong>Butter Cake
Framework</strong> Footer Credits.</p>
<p class="text-center"><span class="text-primary weight-600">Jam Theme</span> Includes the whole Butter Cake
Framework, SASS files and JS files, Feel free to customize it.</p>
<p class="text-center">Thank you! ✌</p>
</div>
<!-- FOOTER CREDITS - APPRECIATE IF YOU KEEP IT. Thanks -->
<footer class="bg-dark py-2">
<div class="container text-white text-center">
<p class="m-0 h6"><span><a href="https://github.com/HimasRafeek/jam-theme" target="_blank">Jam Theme</a>
built with
<a href="https://getbuttercake.com/?ref=jamTheme" target="_blank">Butter Cake Framework</a></span></p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js"></script>
<script src="js/copyCode.js"></script>
<script src="js/butterCake.js"></script>
<script src="js/custom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130557246-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-130557246-1');
</script>
</body>
</html>