-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
203 lines (203 loc) · 7.21 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html>
<head>
<meta content='IE=edge' http-equiv='X-UA-Compatible'>
<meta charset='utf-8'>
<!-- Responsive/Mobile Content Controls -->
<meta content='width=device-width, height=device-height, initial-scale=1.0, user-scalable=0' name='viewport'>
<!-- TEMPORARY LOAD OF JQUERY 1.9 -- USE ASSET PIPELINE IN FINAL DEPLOY -->
<!-- placeholder -->
<script src='//img.icbdr.com/Common/js/jquery/jquery-1.9.0.min.js' type='text/javascript'></script>
<!-- Use title if it's in the page YAML frontmatter -->
<title>Styleguide | CareerBuilder</title>
<link href='//fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet'>
<link href="assets/stylesheets/site-9506f66f.css" media="screen" rel="stylesheet" type="text/css" />
<!-- Loads selectivizer for IE8 to corrct grid incompatabilities. Must be loaded *after* jquery! -->
<!--[if lte IE 8]><script src="assets/javascripts/ie8-49a9e3dc.js" type="text/javascript"></script>
<link href="assets/stylesheets/ie8-acae019a.css" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
</head>
<body class='index employer-scope'>
<div class='modal__background hidden' id='modal-background'></div>
<header class='top-bar' id='top-bar'>
<div class='top-bar__logo'>
<a href='/'>
<!-- / low-fi image of logo for positioning, needs to be updated -->
<img src='assets/images/placeholder-logo-e2d254a1.png'>
</a>
</div>
<nav class='flyout top-bar__links text--white text--top-bar-link medium-screen-up'>
<ul>
<li>
<a href='#account'>
<img src='assets/images/icon--account-8b7208ff.png'>
My Account
</a>
<ul>
<li>
<a href='#'>Menu item 1</a>
</li>
<li>
<a href='#'>Menu item 2</a>
</li>
<li>
<a href='#'>Menu item 3</a>
</li>
</ul>
</li>
<li>
<a href='#cart'>
<img src='assets/images/icon--cart-69058b39.png'>
$1337.00 Cart
</a>
</li>
<li>
<a href='#contact'>
Contact Us
</a>
</li>
</ul>
</nav>
<!-- / mobile menu open link -->
<nav class='top-bar__links small-screen-only top-bar__mobile-menu-link' id='mobile-menu-link'>
<i class='fa fa-bars fa-2x'></i>
</nav>
</header>
<!-- / mobile menu -->
<nav class='top-bar__mobile-menu text--white text--subnav hidden' id='mobile-menu'>
<ul>
<li>
<a href='#menu'>
Products
</a>
</li>
<li>
<a href='#menu'>
Resources
</a>
</li>
<li>
<a href='#menu'>
About Us
</a>
</li>
<li>
<a href='#menu'>
<img src='assets/images/icon--account-8b7208ff.png'>
My Account
</a>
</li>
<li>
<a href='#menu'>
<img src='assets/images/icon--cart-69058b39.png'>
$1337.00 Cart
</a>
</li>
<li>
<a href='#menu'>
Contact Us
</a>
</li>
</ul>
</nav>
<nav>
<a href="./">Styleguide</a>
<a href="shopping-cart.html">Shopping Cart</a>
<a href="cart-login.html">Cart Login</a>
<a href="process-payment.html">Process Payment</a>
<a href="order-confirmation.html">Order Confirmation</a>
<a href="product-page.html">Product Page</a>
<a href="solutions-page.html">Solutions Page</a>
<a href="home-page.html">Home Page</a>
<a href="reading-page.html">Reading Page</a>
<a href="simplified-cart.html">Simplified Cart</a>
<a href="404.html">404</a>
<a href="post-a-job.html">Post a Job</a>
</nav>
<h1>Styleguide</h1>
<div class='tutorial hidden'>
<h2>HAML Basics</h2>
<!-- The basics - http://haml.info/tutorial.html -->
<p>See this page's source code for a quickstart guide to writing HAML.</p>
<!-- HTML TAGS -->
<!-- HTML tags are prefaced with a %, don't use < > and the tags are not closed -->
<!-- Like this: -->
<!-- %h1 -->
<!-- %meta -->
<!-- %li -->
<!-- NESTING -->
<!-- Nesting inside elements uses tab-indent whitespace, or you can have content inside tag on the same line as tag. -->
<!-- Common error: You can't tab-indent content and also have content on the same line as the initial tag. -->
<!-- ATTRIBUTES IN TAGS -->
<!-- Attributes inside a tag are added with a Ruby hash, like this: -->
<!-- %link{ :href => '//fonts.googleapis.com/css?family=Lato:300,400,700', :rel => 'stylesheet', :type => 'text/css' } -->
<!-- Compiles to <link href='//fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'> -->
<!-- Multiline hash is fine, but remember the commas: it's Ruby hash syntax. -->
<!-- Keys are either :symbols, or "strings" (use string if you have funky chars in key). -->
<!-- (There is an alternate syntax with parens that looks more like HTML.) -->
</div>
<!-- global footer -->
<footer class='footer container text--body large-screen-only'>
<div class='footer__subnav text--subnav'>
<ul>
<li>
<a href='#subnav'>
Help
</a>
</li>
<li>
<a href='#subnav'>
Terms & Conditions
</a>
</li>
<li>
<a href='#subnav'>
Security & Privacy
</a>
</li>
<li>
<a href='#subnav'>
Advertise With Us
</a>
</li>
<li>
<a href='#subnav'>
Partners & Affiliates
</a>
</li>
</ul>
</div>
<div class='footer__logo-row'>
<div class='footer__logo'>
<img src="assets/images/placeholder--footer-logo-92c66024.png" />
</div>
<div class='footer__share-links footer__subnav text--subnav'>
<ul>
<li>
<a href='#share-logo'>
<img src="assets/images/icon--social-facebook-7ba66a79.png" />
</a>
</li>
<li>
<a href='#share-logo'>
<img src="assets/images/icon--social-twitter-21674135.png" />
</a>
</li>
<li>
<a href='#share-logo'>
<img src="assets/images/icon--social-linkedin-4bc6b03f.png" />
</a>
</li>
<li>
<a href='#share-logo'>
<img src="assets/images/icon--social-youtube-74ed5770.png" />
</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="assets/javascripts/site-2a795872.js" type="text/javascript"></script>
<script src='https://s3.amazonaws.com/cortex-content-snippets/content-snippets-view.js'></script>
</body>
</html>