forked from r7kamura/yattecast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.html
69 lines (69 loc) · 3.08 KB
/
footer.html
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
60
61
62
63
64
65
66
67
68
69
<footer class="footer">
<div class="container">
<div class="footer-sections">
<div class="row">
<section class="column-small-4 footer-sections-element">
<h1 class="footer-sections-element-heading">
{{ site.title }} とは
</h1>
<div class="footer-sections-element-description">
{{ site.title }} は、{{ site.description_long }}です。
</div>
</section>
<section class="column-small-4 footer-sections-element">
<h1 class="footer-sections-element-heading">
#{{ site.hashtag }}
</h1>
<div class="footer-sections-element-description">
{{ site.title }} への感想や質問などは、Twitterでハッシュタグ <a href="https://twitter.com/search?q=%23{{ site.hashtag }}" target="_blank">#{{ site.hashtag }}</a> をご利用ください。
</div>
<div class="footer-twitter">
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?hashtags={{ site.hashtag }}&url={{ site.github.url }}">
Tweet
</a>
</div>
</section>
<section class="column-small-4 footer-sections-element">
<h1 class="footer-sections-element-heading">
購読
</h1>
<div class="footer-sections-element-description">
新しいエピソードの配信を購読できます。
</div>
<ul>
{% if site.itunes_podcast_url %}
<li>
<a href="{{ site.itunes_podcast_url }}" target="_blank">iTunesで購読</a>
</li>
{% endif %}
<li>
<a href="http://subscribeonandroid.com/{{ site.github.url | remove: "https://" | remove: "http://" }}/feed.xml" target="_blank">Androidで購読</a>
</li>
<li>
<a href="https://push.dog/subscribe?url={{ site.github.url }}/feed.xml" target="_blank">Pushdogで購読</a>
</li>
<li>
<a href="{{ site.github.url }}/feed.xml" target="_blank">RSSで購読</a>
</li>
</ul>
</section>
</div>
</div>
<div class="footer-copyright">
© 2016 <a href="{{ site.github.url }}/">{{ site.title }}</a>
</div>
</div>
</footer>
<script type="text/javascript" async src="https://platform.twitter.com/widgets.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mediaelement/2.23.4/mediaelement-and-player.min.js"></script>
{% if site.google_analytics %}
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}