-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.src.hbs
59 lines (59 loc) · 1.86 KB
/
default.src.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
56
57
58
59
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#005BAC">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
{{#is "post,page"}}
{{post.title}} | {{@site.title}}
{{else}}
{{meta_title}}
{{/is}}
</title>
<link rel="preconnect dns-prefetch" href="https://q.trap.jp/" crossorigin>
{{#is "home"}}
<link rel="preconnect dns-prefetch" href="https://platform.twitter.com" crossorigin>
{{/is}}
{{ghost_head}}
</head>
<body>
<header>
<a class="circleLogo" href="/">
<img src="{{asset "logo/full_blue.svg"}}" decoding="async" alt="traP full logo" width="343" height="48">
</a>
{{navigation}}
</header>
{{{body}}}
<section class="sitemap">
<a href="/page/1/">記事一覧</a>
<a href="/tag/">タグ一覧</a>
<a href="/about-google-analytics/">Google アナリティクスについて</a>
<a href="/specified-commercial-transactions/">特定商取引法に基づく表記</a>
</section>
<footer>
<div class="copy">
<a class="circleLogo" href="/">
<img class="lozad" data-src="{{asset "logo/full_white.svg"}}" alt="traP full logo" width="343" height="48">
</a>
<small>© 2015-<span></span> traP</small>
</div>
<address>
{{#if @site.twitter}}
<a target="_blank" href="{{twitter_url @site.twitter}}" class="twitter-footer" rel="noopener">
<span class="icon-fa" data-name="twitter"></span>
</a>
{{/if}}
{{#if @site.facebook}}
<a target="_blank" href="{{facebook_url @site.facebook}}" class="facebook-footer" rel="noopener">
<span class="icon-fa" data-name="facebook-f"></span>
</a>
{{/if}}
<a target="_blank" href="https://www.youtube.com/channel/UCyQb-L_oCtP-NtBJQ28D4lA" class="youtube-footer" rel="noopener">
<span class="icon-fa" data-name="youtube"></span>
</a>
</address>
</footer>
{{ghost_foot}}
</body>
</html>