-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
131 lines (104 loc) · 6.88 KB
/
home.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
<?php
/*
Template Name: home page only
*/
get_header(); ?>
<div id="page-wrap">
<div class="content">
<!-- START HOME -->
<div id="home" class="section">
<a class="vcard" href="<?php echo trailingslashit( get_bloginfo( 'template_directory' ) ); ?>vcard.vcf"><img alt="Download my vCard" title="Download my vCard" src="<?php echo trailingslashit( get_bloginfo( 'template_directory' ) ); ?>images/download_img.png"></a>
<div class="avatar"<?php echo get_avatar( $user->user_email, $size = '164' ); ?></div><!--avatar -->
<hgroup>
<h1><?php echo $user->first_name . ' ' . $user->last_name; ?>Ben Lobaugh</h1>
<h4><?php echo $user->title; ?>Chief Code Poet</h4>
</hgroup>
<ul class="social-links">
<a href="<?php echo $user->user_url; ?>blog.php" ><li><span>Blog</span></li></a>
<a href="http://linkedin.com/in/<?php echo $user->linkedin; ?>"> <li><span>Linkedin</span></li></a>
<a href="https://twitter.com/<?php echo $user->twitter; ?>"><li><span>Twitter</span></li></a>
</ul>
</div><!-- home -->
<!-- END HOME -->
<!-- Thus begins the rest of the sliders -->
<div class="section">
<div class="innerpage">
<h2>About Me</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<?php echo wpautop( $user->description ); ?>
</div>
</div>
<div class="section">
<div class="innerpage">
<h2>Networks</h2>
<ul class="social">
<?php ?>
<li>
<a class="socialbox" href="https://facebook.com/<?php echo $user->facebook; ?>" target="_BLANK" style="opacity: 1;">
<img alt="facebook icon" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/facebook.png">
<strong>Facebook</strong>
facebook.com/
</a>
</li>
<li class="last">
<a class="socialbox" href="http://linkedin.com/in/<?php echo $user->linkedin; ?>" target="_BLANK" style="opacity: 1;">
<img alt="linkedin icon" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/linkedin.png">
<strong>LinkedIn</strong>
linkedin.com/
</a>
</li>
<li>
<a class="socialbox" href="https://twitter.com/<?php echo $user->twitter; ?>" target="_BLANK" style="opacity: 1;">
<img alt="" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/twitter.png" style="margin-left: 2px;">
<strong>Twitter</strong>
twitter.com/
</a>
</li>
<li class="last">
<a class="socialbox" href="https://github.com/<?php echo $user->github; ?>" target="_BLANK" style="opacity: 1;">
<img alt="github icon" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/github.png">
<strong>Github</strong>
github.com/
</a>
</li>
<li>
<a class="socialbox" href="http://profiles.wordpress.org/<?php echo $user->wordpress; ?>" target="_BLANK">
<img alt="wordpress icon" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/wordpress.png">
<strong>WordPress</strong>
profiles.wordpress.org/
</a>
</li>
<li class="last">
<a class="socialbox" href="http://ben.lobaugh.net/gallery" style="opacity: 1;">
<img alt="photos link image" src="<?php echo trailingslashit( bloginfo( 'template_directory' ) ); ?>images/social-icons/gallery.png">
<strong>Photos</strong>
ben.lobaugh.net/
</a>
</li>
</ul>
</div>
</div>
<div class="section">
<div class="innerpage">
<h2>Contact Me</h2>
<form action="" method="post" >
<p>
<input type="text" default="Subject" name="name" value="Your Name..." onblur="if (this.value == '') {this.value = 'Your Name...';}"
onfocus="if (this.value == 'Your Name...') {this.value = '';}" />
<input type="text" default="Subject" name="email" value="Your Email..." onblur="if (this.value == '') {this.value = 'Your Email...';}"
onfocus="if (this.value == 'Your Email...') {this.value = '';}"/></p>
<p><input type="text" default="Subject" name="subject" value="Subject..." onblur="if (this.value == '') {this.value = 'Subject...';}"
onfocus="if (this.value == 'Subject...') {this.value = '';}" /></p>
<p><textarea name="body" rows="3" cols="60" onblur="if (this.value == '') {this.value = 'Message...';}"
onfocus="if (this.value == 'Message...') {this.value = '';}">Message...</textarea></p>
<p><input type="submit" name="blobaugh_card_contact"/></p>
<input type="hidden" name="h1" value="" />
<input type="hidden" name="h2" value="42" />
</form>
</div>
</div>
</div><!-- content -->
<div class="main-nav-menu">
</div><!-- main nav menu -->
</div><!-- page wrap -->
<?php get_footer(); ?>