forked from sh-akira/VirtualMotionCapture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdownload.html
More file actions
65 lines (63 loc) · 2.51 KB
/
Copy pathdownload.html
File metadata and controls
65 lines (63 loc) · 2.51 KB
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
---
title: ダウンロード
heading: ダウンロード
description: バーチャルモーションキャプチャーのダウンロードページです
pricing_table:
- name: BOOTHから
color: "#4a4a4a"
bgcolor: "#5555f0"
features:
- text: 無料でダウンロードできます
highlight: true
- text: 気に入って頂けたらBOOSTお待ちしています
highlight: false
call_to_action:
link: https://sh-akira.booth.pm/items/999760
text: ダウンロードページへ
- name: pixivFANBOXから
color: "#4a4a4a"
bgcolor: "#f05555"
features:
- text: 先行リリース版(有料)
highlight: true
- text: 支援者限定の新機能先行配信もあります
highlight: false
call_to_action:
link: https://www.pixiv.net/fanbox/creator/10267568
text: 支援ページへ
faq:
- question: 使用に料金はかかりますか?
answer: 無料で使用することが出来ます。気に入って頂けたら支援もお待ちしています。
- question: 使用する際に表記は必要ですか?
answer: 必要ありませんが、して頂けると嬉しいです。
- question: 質問したいことがあります
answer: <a target="_blank" href="https://twitter.com/sh_akira">Twitter</a>でお問い合わせください。
- question: 支援先を教えてください
answer: <a target="_blank" href="https://www.pixiv.net/fanbox/creator/10267568">pixivFANBOX</a>、<a target="_blank" href="https://sh-akira.booth.pm/items/999760">BOOTH</a>、<a target="_blank" href="https://www.amazon.co.jp/registry/wishlist/331R041P8K6BV/ref=cm_sw_r_cp_ep_ws_CxeJBb6XYBE62">欲しいものリスト</a>があります。
---
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li style="background: {{ plan.color }}">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><div class="button"><a target="_blank" style="background: {{ plan.bgcolor }}" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></div></li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>使用に関する FAQ</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>Q.{{ item.question }}</dt>
<dd>A.{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}