-
Notifications
You must be signed in to change notification settings - Fork 50
/
index.hbs
36 lines (32 loc) · 1.49 KB
/
index.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
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
<header class="site-header outer {{#if @blog.cover_image}}" style="background-image: url({{@blog.cover_image}}){{else}}no-cover{{/if}}">
<div class="inner">
<div class="site-header-content">
<h1 class="site-title">
{{!-- {{#if @blog.logo}}
<img class="site-logo" src="{{@blog.logo}}" alt="{{@blog.title}}" />
{{else}}
{{@blog.title}}
{{/if}} --}}
{{@blog.title}}
</h1>
{{!-- <h2 class="site-description">{{@blog.description}}</h2> --}}
<h2 class="author-name">Wenke</h2>
</div>
{{> "site-nav"}}
<div class="social-nav">
<ul>
<li><a href="https://github.com/wenkeShi" title="github" target="_blank"></a></li>
<li><a href="http://www.jianshu.com/u/a95536c856b6" title="简书" target="_blank"></a></li>
<li><a href="http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=FiciJiInJyIiLiVWZ2c4dXl7" title="email" target="_blank"></a></li>
<li>
<a title="QQ" class="qq-nav"></a>
<div class="qrcode"></div>
</li>
</ul>
</div>
</div>
</header>