-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.php
More file actions
23 lines (22 loc) · 832 Bytes
/
Copy pathheader.php
File metadata and controls
23 lines (22 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title><?php bloginfo( 'name' ); ?> <?php wp_title( '|' ); ?></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script>
$(document).bind("mobileinit", function(){
// $.mobile.ajaxEnabled = false;
});
</script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<?php wp_head(); ?>
</head>
<body>
<div data-role="page" data-theme="b">
<header data-role="header">
<h1><?php bloginfo('name'); ?></h1>
<?php if( is_single() ) { ?>
<a href="<?php echo get_home_url(); ?>" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
<?php }; ?>
</header>