-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
59 lines (48 loc) · 1.16 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<?php get_header(); ?>
<body id="index" onload="">
<div id="wrapper">
<div id="header">
<h1 id="jon_busby">Jon Busby</h1>
<div id='social'>
<ul>
<li id='twitter'>
<a id='twitter-sprite' href='http://www.twitter.com/busbyjon'></a>
<h2>Twitter</h2>
<p>twitter.com/busbyjon</p>
</li>
<li id='linkedin'>
<a id='linkedin-sprite' href='http://www.linkedin.com/in/jonbusby'></a>
<h2>Linked In</h2>
<p>linkedin.com/jonbusby</p>
</li>
<li id='email'>
<a id='email-sprite' href='mailto:busbyjon@gmail.com'></a>
<h2>Email</h2>
<p>busbyjon@gmail.com</p>
</li>
</ul>
</div>
</div>
<div id="main">
<div id="content">
<?php get_template_part( 'loop', 'index' ); ?>
</div>
<div id="sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<div id="footer">
<?php get_footer(); ?>
</div>
</div>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>