-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (83 loc) · 5.66 KB
/
Copy pathindex.html
File metadata and controls
98 lines (83 loc) · 5.66 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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html id="myDocument" class="no-js my-document">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Blackhole</title>
<meta name="author" content="Alin Seba">
<meta name="description" content="Blackhole - minimalistic but powerful and flexible SASS framework">
<meta name="keywords" content="reusable components, modularity, sass framework, semantic code">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- === FONTS === -->
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'><!-- BODY FONT -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'><!-- HEADINGS FONT -->
<!-- === MAIN STYLES === -->
<link rel="stylesheet" href="styles/base/normalize.min.css"><!-- CSS RESETER -->
<link rel="stylesheet" href="styles/base/boilerplate.css"><!-- BOILERPLATE -->
<!-- <link rel="stylesheet" href="styles/base/minified/main.min.css"> --><!-- minified version -->
<link rel="stylesheet" href="styles/boot.css"><!-- BOOT MODULE -->
<!-- <link rel="stylesheet" href="styles/minified/boot.min.css"> --><!-- minified version -->
<link rel="stylesheet" href="styles/main.css"><!-- MAIN STYLES -->
<!-- <link rel="stylesheet" href="styles/minified/main.min.css"> --><!-- minified version -->
<!-- === PLUGINS STYLES === -->
<!-- === VENDOR SCRIPTS === -->
<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- === PLUGIN SCRIPTS === -->
</head>
<body id="myFramework" class="my-framework no-text-shadow">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div id="framework" class="framework"><!-- FRAMEWORK STARTS HERE -->
<header id="main-header" class="section-free"><!-- MAIN HEADER STARTS HERE -->
<!-- YOUR MAIN HEADER MARKUP -->
<div class="wrapper"><!-- MAIN HEADER WRAPPER STARTS HERE -->
<aside class="logo">
<a href="http://www.html5depot.com/blackhole" title="Minimalistic but powerful SASS / CSS Framework">Blackh<span class="symbol">o</span>le</a>
</aside>
</div>
</header><!-- MAIN HEADER ENDS HERE -->
<section id="main-section" class="section"><!-- MAIN SECTION STARTS HERE -->
<div id="main-content" class="section-free"><!-- MAIN CONTENT STARTS HERE -->
<!-- YOUR MAIN CONTENT MARKUP -->
<h1>Hi there!</h1>
<p>Thanks for using <a href="http://www.html5depot.com/blackhole" title="Blackhole">Blackhole</a>.</p>
<p>Check out the <a href="component-manager/typography.html" title="Component Manager">Component Manager</a> to start grabbing components you need and the <a href="documentation/sassdoc/index.html" title="SASS API">SASS API</a>.</p>
<span class="learn">You can learn how to use it in <a href="http://www.html5depot.com/blackhole/framework/documentation/learn.html" title="Learn Blackhole">here</a>.</span>
</div><!-- MAIN CONTENT ENDS HERE -->
</section><!-- MAIN SECTION ENDS HERE -->
<footer id="main-footer" class="section-free"><!-- MAIN FOOTER STARTS HERE -->
<!-- YOUR MAIN FOOTER MARKUP -->
<div class="wrapper"><!-- MAIN FOOTER WRAPPER STARTS HERE -->
<span class="copyright"><strong>Blackhole</strong> - Developed by <a href="mailto:alin@html5depot.com" title="Contact the Author">Alin Seba</a> and released under <a href="http://opensource.org/licenses/MIT" target="_blank" title="MIT License">MIT</a> license</span>
<ul class="list social with-background">
<li class="item twitter">
<a href="https://twitter.com/blackholesass" title="Twitter" data-uk-tooltip><span class="icon"></span></a>
</li>
<li class="item github">
<a href="https://github.com/alinseba/blackhole" title="Github" data-uk-tooltip><span class="icon"></span></a>
</li>
</ul>
<span class="version">
<span class="name">version:</span>
<strong class="value">1.11</strong>
</span>
</div><!-- MAIN FOOTER WRAPPER ENDS HERE -->
</footer><!-- MAIN FOOTER ENDS HERE -->
</div><!-- FRAMEWORK ENDS HERE -->
<script type="text/javascript" src="js/main.js"></script>
<!-- <script type="text/javascript" src="js/minified/main.min.js"></script> --><!-- minified version -->
<!-- Calling of needed JS Functions / Plugins -->
<script type="text/javascript">
$(document).ready(function() {
// jQuery Calls in here
});
// JS Calls in here
</script>
</body>
</html>