forked from allypalanzi/ukrave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
457 lines (346 loc) · 16.2 KB
/
index.php
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>U.Krave Design</title>
<meta name="description" content="">
<meta name="author" content="Ally Palanzi, Una Kravets">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Wordpress Blog Linkage
================================================== -->
<?php
require('blog/wp-blog-header.php');
query_posts('showposts=1'); ?>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="stylesheets/style.css">
<!-- SCRIPTS
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="js/functions.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<!-- NAV
================================================== -->
<div id="nav-container">
<div id="nav">
<div id="mobilebg"></div>
<ul>
<li><a href="#about" rel="" id="anchor1 comp" class= "anchorLink comp">about us</a></li>
<li class=""><a href="#services" rel="" id="anchor1 comp" class= "anchorLink comp">services</a></li>
<li id="navlogo" class="navlogo"><a href="#top" rel="" id="anchor1 comp" class= "anchorLink">
</a></li>
<li class="right-web comp"><a href="#work" rel="" id="anchor1 comp" class= "anchorLink">work</a></li>
<li class="right-always comp"><a href="#contact" rel="" id="anchor1" class= "anchorLink">contact</a></li>
<div id="mobilenavbutton">
<div id="navarrow"></div>
<a href="#mobilenav" class="mobilenavbutton"></a></div>
</ul>
<!-- hidden mobile -->
<div id="mobilenav">
<ul>
<li><a href="#about" rel="" id="anchor1" class= "anchorLink dd">about us</a></li>
<li><a href="#services" rel="" id="anchor1" class= "anchorLink dd">services</a></li>
<li><a href="#work" rel="" id="anchor1" class= "anchorLink dd">work</a></li>
<li><a href="#contact" rel="" id="anchor1" class= "anchorLink dd">contact</a></li>
<li><a href="blog" rel="" class= " dd">blog</a></li>
</ul>
</div>
</div>
</div>
<!-- END OF NAV
================================================== -->
<!-- TOP SECTION
================================================== -->
<a name="top" id="top"></a>
<div id="topsection">
<div id="chevronandlogo">
<div id="top_chevron"></div>
<div id="top_bigcircle_centerer">
<div id="top_bigcircle_logo"></div>
</div>
</div>
</div>
</div>
<!-- END OF TOP SECTION
================================================== -->
<!-- ABOUT SECTION
================================================== -->
<a name="about" id="about"></a>
<div id="aboutsection">
<div id="aboutus_container">
<h1> let's get to know each other.</h1>
<div id="una">
<div id="una_photo" class="aboutus_photo">
<div class="portlink">
<a href="http://unakravets.com" target="_blank">
<h3>» view portfolio</h3>
</div>
</a>
</div>
<div class="aboutus_text">
<h2>Una Kravets</h2>
<h3>designer/developer</h3>
<p> A gum addict and proud nerd, Una has been designing since age 12 (Jasc Paint Shop Pro 7 ♥). She's currently working on two degrees — a BA in graphic design & a BS in computer science from American University in DC. Una spends most of her time completely immersed in the design/coding world, rarely going to sleep before 2am (#gdprobs). She loves hazelnut coffee, will dance at any given opportunity, and has a bad case of wanderlust. </p>
<div class="socialicons_sm">
<a href="http://unakravets.com" target="_blank" class="tooltip"> <span>portfolio</span><div id="unak"></div> </a>
<a href="http://dribbble.com/ohhey_unak" target="_blank" class="tooltip"> <span>dribbble</span> <div id="dribbble"></div> </a>
<a href="http://luxogram.co/profile/unax3" target="_blank" class="tooltip"> <span>instagram</span> <div id="instagram"></div> </a>
<a href="http://www.behance.net/unakravets/frame" target="_blank" class="tooltip"> <span>behance</span> <div id="behance"></div> </a>
<a href="https://twitter.com/Gdes_Problems" target="_blank" class="tooltip"><span>twitters</span> <div id="twitter"></div> </a>
</div>
</div>
</div> <!-- END DIV UNA -->
<div class="clear"></div>
<div id="ally">
<div id="ally_photo" class="aboutus_photo">
<div class="portlink">
<a href="http://allypalanzi.com" target="_blank">
<h3>» view portfolio</h3>
</a>
</div>
</div>
<div class="aboutus_text">
<h2>Ally Palanzi</h2>
<h3>designer/developer</h3>
<p> Hello! I'm currently living in Washington, DC studying graphic design with a minor in computer science at American University. I'm sarcastic, shy, fueled by lots and lots of coffee, have a love for biking, designing, web development, my pet turtles (Edgar and Ellen), and am rarely caught without my Nikon D90.</p>
<div class="socialicons_sm">
<a href="http://www.allypalanzi.com" target="_blank" class="tooltip"><span>portfolio</span><div id="allyp"></div> </a>
<a href="http://dribbble.com/allypalanzi" target="_blank" class="tooltip"><span>dribbble</span><div id="dribbble"></div> </a>
<a href="http://www.flickr.com/photos/electricamp/" target="_blank" class="tooltip"><span>flickr</span><div id="flickr"></div> </a>
<a href="http://www.behance.net/allypalanzi" target="_blank" class="tooltip"><span>behance</span><div id="behance"></div> </a>
<a href="https://twitter.com/mylifeasalllly" target="_blank" class="tooltip"><span>twitters</span><div id="twitter"></div> </a>
</div>
</div>
</div> <!-- END DIV ALLY-->
</div>
</div>
<div class="clear"></div>
<!-- END OF ABOUT SECTION
================================================== -->
<!-- WE MAKE SECTION
================================================== -->
<a name="services" id="services"></a>
<div id="we-make-chevron"></div>
<div id="we-make-container">
<center><h1> we make some cool things.</h1></center>
<div id="we-make">
<!-- MOBILE SLIDER
================================================== -->
<div id="show-slider">
<a href='#' class="arrow" onclick='slider.prev();return false;'><img src="images/arrow-left.png" width="15px"></a>
<a href='#' class="arrow-right" onclick='slider.next();return false;'><img src="images/arrow-right.png" width="15px"></a>
<div id='slider' class='swipe'>
<div id="slider-container">
<div style='display:block'>
<div class="icon-container">
<div class="icon"><img src="images/mobile.png"></div>
<div class="icon-text">
<center><h4>mobile interface</h4></center>
<p>We design the look and feel of your mobile website or application. With the majority of Americans now using smartphones, mobile access is crucial.</p>
</div>
</div>
</div>
<div style='display:none'>
<div class="icon-container">
<div class="icon"><img src="images/webdev.png"></div>
<div class="icon-text">
<center><h4>web development</h4></center>
<p>Not only do we love to design beautiful layouts, but we really enjoy coding them too! We personally work with you from concept to deployment. </p>
</div>
</div>
</div>
<div style='display:none'>
<div class="icon-container">
<div class="icon"><img src="images/wordpress.png"></div>
<div class="icon-text">
<center><h4>wordpress</h4></center>
<p>Wordpress bridges the gap between design and usability. We can build your website on this popular platform so you can update it at any time.</p>
</div>
</div>
</div>
<div style='display:none'>
<div class="icon-container">
<div class="icon"><img src="images/responsive.png"></div>
<div class="icon-text">
<center><h4>responsive design</h4></center>
<p>Responsive design is a great way to ensure consistency across all devices. We design with each platform in mind to ensure a great experience. </p>
</div>
</div>
</div>
<div style='display:none'>
<div class="icon-container">
<div class="icon"><img src="images/print.png"></div>
<div class="icon-text">
<center><h4>print design</h4></center>
<p>From business cards and letterheads, to posters and menus — we have experience designing for a variety of organizations and mediums. </p>
</div>
</div>
</div>
<div style='display:none'>
<div class="icon-container">
<div class="icon"><img src="images/identity.png"></div>
<div class="icon-text">
<center><h4>branding/identity</h4></center>
<p>Identity is key in how a company makes an impression. We work with you to develop or refine your perfect color story, logo, and overall aesthetic</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END MOBILE SLIDER
================================================== -->
<div id="all-icon-container">
<div class="icon-container">
<div class="icon"><img src="images/mobile.png"></div>
<div class="icon-text">
<center><h4>mobile interface</h4></center>
<p>We design the look and feel of your mobile website or application. With the majority of Americans now using smartphones, mobile access is crucial.</p>
</div>
</div>
<div class="icon-container">
<div class="icon"><img src="images/webdev.png"></div>
<div class="icon-text">
<center><h4>web development</h4></center>
<p>Not only do we love to design beautiful layouts, but we really enjoy coding them too! We personally work with you from concept to deployment. </p>
</div>
</div>
<div class="icon-container">
<div class="icon"><img src="images/wordpress.png"></div>
<div class="icon-text">
<center><h4>wordpress</h4></center>
<p>Wordpress bridges the gap between design and usability. We can build your website on this platform so you can update it at any time.</p>
</div>
</div>
<div class="icon-container">
<div class="icon"><img src="images/responsive.png"></div>
<div class="icon-text">
<center><h4>responsive design</h4></center>
<p>Responsive design is a great way to ensure consistency across all devices. We design with each platform in mind to ensure a great experience. </p>
</div>
</div>
<div class="icon-container">
<div class="icon"><img src="images/print.png"></div>
<div class="icon-text">
<center><h4>print design</h4></center>
<p>From business cards and letterheads, to posters and menus — we have experience designing for a variety of organizations and mediums. </p>
</div>
</div>
<div class="icon-container">
<div class="icon"><img src="images/identity.png"></div>
<div class="icon-text">
<center><h4>branding / identity</h4></center>
<p>Identity is key in how a company makes an impression. We work with you to develop or refine your perfect color story, logo, and overall aesthetic</p>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<!-- END OF WE MAKE SECTION
================================================== -->
<!-- GALLERY SECTION
================================================== -->
<a name="work" id="work"></a>
<div id="gallery-chevron"></div>
<div id="gallery-container">
<div id="gallery">
<center><h1>this is where we are going to put examples of our work. it's under construction right now, so just check out our <a href="#about" rel="" id="anchor1" class= "anchorLink">portfolios</a> in the meantime!</h1></center>
<br><br>
</div>
</div>
<!-- END OF GALLERY SECTION
================================================== -->
<!-- CONTACT SECTION
================================================== -->
<a name="contact" id="contact"></a>
<div id="contact-arrow-container"><div id="contact-arrow"></div></div>
<div id="contactsection">
<div id="contact-container">
<div id="contactform">
<h1> get in touch! </h1>
<h2>we'd love to start a project with you! send us an email or fill out the form below. we promise to contact you back.</h2>
<form method='post' action='contact.php' id='form' autocomplete="on" >
<div>
<p> <label for="name" class="user" > Name <span class="required">*</span></label> <input type='text' name='name' required id='name' placeholder="My name is..." /> </p>
</div><br/>
<div>
<p> <label for="email" class="mail-alt"> E-mail address <span class="required">*</span></label> <input type='email' name='email' required id='email'placeholder="We don't even know how to send spam mail" required="required" /> </p>
</div><br/>
<div>
<p> <label for="website" class="link"> Website </label> <input type="text" name="website" id="website" placeholder="We'd love to check it out" /> </p>
</div><br/>
<div>
<p> <label for="subject" class="quote-alt"> Subject </label> <input type='text' name='subject' placeholder="Be Creative!" /> </p>
</div><br/>
<div class="message">
<p rel="message"> <label for="message" class="comment"> Message <span class="required">*</span></label> <textarea name='message' required id='message' placeholder="Now, go on :)" ></textarea> </p>
<a class="submittext" href="#">»submit</a>
</div>
<div class="clear"></div>
</form>
</div>
<div id="twit-container"><h5>@ukravedesign</h5><ul id="twitter_update_list"></ul><a href="http:://www.twitter.com/ukravedesign" class="big">»follow</a>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/ukravedesign.json?callback=twitterCallback2&count=3"></script>
<div id="wordpress-container">
<h5>we write things:</h5>
<div id="blogpost">
<?php while (have_posts()): the_post(); ?>
<h2 style="font-size:45px"><?php the_title(); ?></h2>
<h3 style="font-size:24px"><?php the_date(); ?> </h3>
<?php the_excerpt(); ?>
<p><br/><a class="big blogread" href="<?php the_permalink(); ?>"> » read more</a></p>
<?php endwhile; ?>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<!-- END OF CONTACT SECTION
================================================== -->
</body>
<script type="text/javascript">
var slider = new Swipe(document.getElementById('slider'));
$("h1").fitText(1.2, { minFontSize: '40px', maxFontSize: '60px' });
</script>
<script>
$(function(){
$('.submittext').click(function(e){
// Stop the form actually posting
e.preventDefault();
// Send the request
$.post('contact.php', {
name: $('#name').val(),
email: $('#email').val(),
website: $('#website').val(),
subject: $('#subject').val(),
message: $('#message').val(),
}, function(d){
console.log(d);
// Here we handle the response from the script
// We are just going to alert the result for now
alert(d);
});
});
});
</script>
</html>