-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.hbs
39 lines (32 loc) · 941 Bytes
/
page-about.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
{{!< default}}
{{#post}}
<header class="page-header" style="background-image: url({{image}})">
<div class="page-header-cover">
<div class="page-title-block">
<h1 class="post-title">{{{title}}}</h1>
</div>
</div>
</header>
<nav id="page-navigation">
<div class="navigation-content">
{{#if @blog.logo}}
<img class="logo" src="{{@blog.logo}}" />{{/if}}
<div class="titles">
<h1>{{@blog.title}}</h1>
<p>{{@blog.description}}</p>
</div>
<ul class="menu">
<li><a href="/">Blog</a></li>
<li><a href="/tag/portfolio">Portfolio</a></li>
<li class="selected">About</li>
</ul>
{{> "social"}}
</div>
</nav>
<article class="post-container post-container--single">
<section class="{{post_class}}">
{{content}}
</section>
</article>
{{!-- {{> comments}} --}}
{{/post}}