-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repo was too large. Had to refresh.
- Loading branch information
Showing
278 changed files
with
60,258 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### OSX ### | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Other Stuff | ||
wiki/ | ||
|
||
# reCAPTCHA keys | ||
include/recaptcha_keys.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#URL rewrites for ALL pages that end in php, saves time | ||
RewriteEngine on | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME}\.php -f | ||
RewriteRule ^(.*)$ $1.php | ||
|
||
# pretty view rewrite rule for single page views of tabbed content. sytax will be.net/page/[param(which is the id of the php page we want] | ||
RewriteRule ^/?page/([^/d]+)/?$ single.php?doc=$1 [L,QSA] | ||
|
||
#Error Documents for pages that don't exist yet | ||
ErrorDocument 404 /404 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php include ('header_index.php'); ?> | ||
|
||
<!-- Headerwrap --> | ||
<div class="row"> | ||
<h1 style="margin-top:90px;"> | ||
<?php echo $Locale->getText("big_404"); ?> | ||
</h1> | ||
<a href="#cta" class="btn btn-embossed btn-primary smoothScroll"><?php echo $Locale->getText("why_peercoin_button"); ?></a> | ||
<a href="downloads" target="_blank" class="btn btn-embossed btn-primary"><?php echo $Locale->getText("download_wallet"); ?>!</a> | ||
|
||
<div class="marketcap"> | ||
<ul> | ||
<li> | ||
<span id="current-price"></span> | ||
<span><?php echo $Locale->getText("price"); ?></span> | ||
</li> | ||
<li> | ||
<span id="market-cap"></span> | ||
<span><?php echo $Locale->getText("market_cap"); ?></span> | ||
</li> | ||
<li> | ||
<span id="total-supply"></span> | ||
<span><?php echo $Locale->getText("total_supply"); ?></span> | ||
</li> | ||
</ul> | ||
<div class="updated"> | ||
<span><?php echo $Locale->getText("ticker_last_updated"); ?></span> | ||
<span id="seconds-since-update"><?php echo $Locale->getText("ticker_last_updated_never"); ?></span> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</header> | ||
|
||
<!-- /G Wrap --> | ||
<?php include ('footer.php'); ?> |
Oops, something went wrong.