forked from super3/peercoin.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopers.php
72 lines (71 loc) · 3.08 KB
/
developers.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
67
68
69
70
71
72
<?php $page_title = "Developers"; include ('header.php'); ?>
<div class="row text-center">
<div class="col-md-8 col-md-offset-2">
<img src="assets/img/types/developer/banner.svg" class="svg-fullwidth" />
</div>
</div>
<div class="row text-center">
<h2><?php echo $Locale->getText("developers.rapid_pace"); ?></h2>
</div>
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-md-6">
<h1 class="h-smargin"><?php echo $Locale->getText("developers.core_protocol"); ?></h1>
<p>
<?php echo $Locale->getText("developers.core_protocol_desc"); ?>
</p>
<h4 class="h-smargin"><?php echo $Locale->getText("developers.cold_wallet_minting"); ?></h4>
<p>
<?php echo $Locale->getText("developers.cold_wallet_minting_desc"); ?>
</p>
<h4 class="h-smargin"><?php echo $Locale->getText("developers.optional_checkpointing"); ?></h4>
<p>
<?php echo $Locale->getText("developers.optional_checkpointing_desc"); ?>
</p>
</div>
<div class="col-lg-5 col-md-6">
<h1 class="h-smargin"><?php echo $Locale->getText("developers.peercoin_ecosystem"); ?></h1>
<a href="http://peer4commit.com/"><img class="svg-full-width" src="assets/img/types/developer/peer4commit.svg" /></a>
<p>
<?php echo $Locale->getText("developers.peer4commit"); ?>
</p>
<ul>
<li><?php echo $Locale->getText("developers.peer4commit.1"); ?></li>
<li><?php echo $Locale->getText("developers.peer4commit.2"); ?></li>
<li><?php echo $Locale->getText("developers.peer4commit.3"); ?></li>
</ul>
<p><strong><?php echo $Locale->getText("developers.what_are_you_waiting_for"); ?> <a class="btn btn-xs btn-primary" href="http://peer4commit.com/"><?php echo $Locale->getText("developers.get_started"); ?></a></strong></p>
</div>
</div>
<div class="row text-center">
<h2><?php echo $Locale->getText("developers.notable_community_projects"); ?></h2>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1 col-md-4 text-center vcenter">
<img src="assets/img/logos/peerunity.svg" class="svg-halfwidth" />
</div>
<div class="col-lg-7 col-md-8 vcenter">
<h1 class="h-smargin">Peerunity</h1>
<p>
<?php echo $Locale->getText("developers.peerunity_desc"); ?>
</p>
<a href="https://talk.peercoin.net/c/projects" class="btn btn-primary" target="_BLANK"><?php echo $Locale->getText("forum"); ?></a>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-lg-offset-1 col-md-4 text-center vcenter">
<img src="assets/img/types/developer/peerbox.svg" class="svg-halfwidth" />
</div>
<div class="col-lg-7 col-md-8 vcenter">
<h1 class="h-smargin">Peerbox</h1>
<p>
<?php echo $Locale->getText("developers.peerbox_desc"); ?>
</p>
<a href="http://www.peerbox.me/" class="btn btn-primary" target="_BLANK"><?php echo $Locale->getText("website"); ?></a>
<a href="https://talk.peercoin.net/c/projects" class="btn btn-primary" target="_BLANK"><?php echo $Locale->getText("forum"); ?></a>
</div>
</div>
<div class="row text-center">
<h3><?php echo $Locale->getText("developers.devforums"); ?></h3>
</div>
</div>
<?php include ('footer.php'); ?>