Skip to content

Commit

Permalink
Add back web files.
Browse files Browse the repository at this point in the history
Repo was too large. Had to refresh.
  • Loading branch information
super3 committed Mar 15, 2014
1 parent b8ff76a commit 80a3a1b
Show file tree
Hide file tree
Showing 278 changed files with 60,258 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions .htaccess
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
37 changes: 37 additions & 0 deletions 404.php
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'); ?>
Loading

0 comments on commit 80a3a1b

Please sign in to comment.