forked from kelyvin/ghost-caffeine-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-about.hbs
31 lines (28 loc) · 862 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
{{!< default}}
{{#post}}
<article class="page-about {{post_class}}">
{{> material-cover}}
<div class="profile-container animated fade-in">
{{#if @blog.logo}}
<div class="profile-image">
<img src="{{@blog.logo}}" alt="{{@blog.title}} avatar" class="avatar rounded" />
</div>
{{/if}}
<div class="post-card animated">
<div class="post-container">
<div class="post-header">
<h1 id="post-title">
{{{title}}}
</h1>
<div class="socmenu">
{{> social}}
</div>
</div>
<div class="post-content">
{{content}}
</div>
</div>
</div>
</div>
</article>
{{/post}}