forked from super3/peercoin.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.php
66 lines (64 loc) · 2.2 KB
/
faq.php
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
<?php $page_title = "FAQ"; include ('header.php'); ?>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<img class="svg-fullwidth" src="assets/img/faq/banner.svg" alt="Frequently Asked Questions">
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q1"); ?></h2>
<p>
<strong><?php echo $Locale->getText("faq.yes"); ?>.</strong> <?php echo $Locale->getText("faq.q1_ans"); ?>
</p>
<p>
<strong><?php echo $Locale->getText("faq.sources"); ?>:</strong><br>
<a href="https://bitcointalk.org/index.php?topic=99735.0">https://bitcointalk.org/index.php?topic=99735.0</a><br>
<a href="https://bitcointalk.org/index.php?topic=101820.0">https://bitcointalk.org/index.php?topic=101820.0</a><br>
<a href="https://bitcointalk.org/index.php?topic=101820.msg1114141#msg1114141">https://bitcointalk.org/index.php?topic=101820.msg1114141#msg1114141</a>
</p>
</div>
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q2"); ?></h2>
<p>
<?php echo $Locale->getText("faq.q2_ans"); ?>
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q3"); ?></h2>
<p>
<strong><?php echo $Locale->getText("faq.no"); ?>.</strong> <?php echo $Locale->getText("faq.q3_ans"); ?>
</p>
</div>
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q4"); ?></h2>
<p>
<strong><?php echo $Locale->getText("faq.no"); ?>.</strong> <?php echo $Locale->getText("faq.q4_ans"); ?>
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q5"); ?></h2>
<p>
<strong><?php echo $Locale->getText("faq.yes"); ?>.</strong> <?php echo $Locale->getText("faq.q5_ans"); ?>
</p>
</div>
<div class="col-md-6">
<h2><?php echo $Locale->getText("faq.q6"); ?></h2>
<p>
<?php echo $Locale->getText("faq.q6_ans"); ?>
</p>
<ul>
<li><?php echo $Locale->getText("faq.q6_l1"); ?></li>
<li><?php echo $Locale->getText("faq.q6_l2"); ?></li>
<li><?php echo $Locale->getText("faq.q6_l3"); ?></li>
</ul>
<p>
<?php echo $Locale->getText("faq.q6_ans2"); ?>
</p>
</div>
</div>
</div>
<?php include ('footer.php'); ?>