-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrapper.php
50 lines (37 loc) · 1.54 KB
/
wrapper.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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title(''); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--[if lte IE 9]><link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/styles/ie.css" type="text/css" media="screen" /><![endif]-->
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo get_template_directory_uri(); ?>/styles/1140.css" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php appthemes_before(); ?>
<?php appthemes_before_header(); ?>
<?php get_header( app_template_base() ); ?>
<?php appthemes_after_header(); ?>
<div id="content" class="container">
<div class="row">
<div class="ninecol">
<?php load_template( app_template_path() ); ?>
</div><!--.col-->
<div class="threecol last">
<?php get_sidebar( app_template_base() ); ?>
</div><!--.col-->
</div><!--.row-->
<div class="push"></div>
</div><!-- .container -->
<?php appthemes_before_footer(); ?>
<?php get_footer( app_template_base() ); ?>
<?php appthemes_after_footer(); ?>
<?php appthemes_after(); ?>
<?php wp_footer();?>
</body>
</html>