-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.hbs
55 lines (50 loc) · 1.58 KB
/
page.hbs
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
{{!< default}}
<header class="header-outer">
<div class="header-inner container" role="banner" itemscope itemtype="http://schema.org/WPHeader">
{{#if @site.logo}}
<h2 class="site-title title"><a class="site-logo" href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}" /></a></h2>
{{else}}
<h2 class="site-title title"><a title="{{@site.title}}" href="{{@site.url}}" itemprop="headline">{{{@site.title}}}</a></h2>
<p class="site-description" itemprop="description">{{@site.description}}</p>
{{/if}}
</div>
{{> memberpanel}}
</header>
<div class="main-outer" id="singlepage">
<main class="main-inner clearfix">
{{#post}}
<article class="{{post_class}}" itemscope itemtype="http://schema.org/BlogPosting">
{{#match @page.show_title_and_feature_image}}
<ul class="post-header">
<li class="section post-title" itemprop="name">
<h1 class="title">
{{title}}
</h1>
</li>
<li class="post-meta">
<span class="meta-date">{{date format='MMM Do, YYYY'}}</span>
</li>
{{#if custom_excerpt}}
<li class="post-full-custom-excerpt">
<p>{{custom_excerpt}}</p>
</li>
{{/if}}
</ul>
{{/match}}
{{#if feature_image}}
<div class="post-cover">
<img src="{{img_url feature_image}}">
</div>
{{/if}}
<section class="section post-body" itemprop="articleBody">
{{content}}
</section>
<footer class="post-footer">
<div class="post-footer-line-1">
{{> sharing}}
</div>
</footer>
</article>
{{/post}}
</main>
</div>