-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.php
64 lines (55 loc) · 1.97 KB
/
base.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
<!DOCTYPE html>
<html {{ site.language_attributes }}>
<head>
<meta charset="{{ site.bloginfo('charset') }}" />
<title>{% block title %}{{ site.bloginfo('name') }} | {{ site.get_bloginfo('description','display') }}{% endblock %}</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="{{ site.bloginfo('stylesheet_url') }}" />
<link rel="pingback" href="{{ site.bloginfo('pingback_url') }}" />
{% block extra_javascript %}
{% if ( site.is_singular() and site.get_option( 'thread_comments' ) ) %}
{{ site.wp_enqueue_script( 'comment-reply' ) }}
{% endif %}
{% endblock %}
</head>
<body {{ site.body_class() }}>
<div id="wrapper" class="hfeed">
<div id="header">
<div id="masthead">
<div id="branding" role="banner">
{% block heading %}
<h1 id="site-title">
<span>
<a href="{{ site.esc_url(site.home_url('/')) }}" title="{{ site.bloginfo('name')|e }}" rel="home">{{ site.bloginfo('name') }}</a>
</span>
</h1>
{% endblock %}
<div id="site-description">{{ site.get_bloginfo('description','display') }}</div>
</div>
<div id="access" role="navigation">
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
{{ site.wp_nav_menu( {"container_class": "menu-header", "theme_location" : "primary"} ) }}
</div>
</div>
</div>
<div id="main">
{% block content %}{% endblock %}
</div>
<div id="footer" role="contentinfo">
<div id="colophon">
{{ site.get_sidebar('footer') }}
<div id="site-info">
<a href="{{ site.esc_url(site.home_url('/'))}}" title="{{ site.bloginfo('name') }}" rel="home">
{{ site.bloginfo('name') }}
</a>
</div>
<div id="site-generator">
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">
Proudly powered by WordPress
</a>
</div>
</div>
</div>
</div>
</body>
</html>