-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marty Wallace
committed
Mar 13, 2015
1 parent
f887082
commit 86f8754
Showing
18 changed files
with
174 additions
and
142 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
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
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
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,6 @@ | ||
{# Append additional META tags like description here. #} | ||
{% set meta = [ | ||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' } | ||
] %} | ||
|
||
{% extends '_layouts/doc.html' %} |
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,8 @@ | ||
{% set title = config.title ~ ' - Page Not Found' %} | ||
|
||
{% extends '_layouts/doc.html' %} | ||
|
||
{% block body %} | ||
<h1>404</h1> | ||
<p>This resource does not exist. Go back to our <a href="/">homepage</a>.</p> | ||
{% endblock %} |
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,63 @@ | ||
{% set title = config.title ~ ' - Internal Server Error' %} | ||
|
||
{% set meta = [ | ||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, | ||
{ name: 'robots', context: 'noindex, nofollow' } | ||
] %} | ||
|
||
{% extends '_layouts/doc.html' %} | ||
|
||
{% block css %} | ||
<link rel="stylesheet" href="/css/tempest.css"> | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<div id="head"> | ||
<div class="grid"> | ||
<h1>{{ title }}</h1> | ||
<a href="/">Return</a> | ||
</div> | ||
</div> | ||
|
||
<div id="content"> | ||
<div class="grid"> | ||
<div class="column sixty"> | ||
{% block content %} | ||
<ul id="errors"> | ||
{% for error in errors %} | ||
<li> | ||
<pre>{{ error.getString() }}</pre> | ||
<p><small><span title="{{ error.getFile() }}">{{ error.getShortFile() }}</span> · Line {{ error.getLine() }}</small></p> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} | ||
</div> | ||
<div class="column thirty-five float-right"> | ||
<div id="request"> | ||
<h2>REQUEST DATA</h2> | ||
|
||
<h6>URI</h6> | ||
<p>{{ request.value }}</p> | ||
|
||
<h6>GET</h6> | ||
<pre>{{ request.data('get') | json_encode(constant('JSON_PRETTY_PRINT')) }}</pre> | ||
|
||
<h6>POST</h6> | ||
<pre>{{ request.data('post') | json_encode(constant('JSON_PRETTY_PRINT')) }}</pre> | ||
|
||
<h6>NAMED</h6> | ||
<pre>{{ request.data('named') | json_encode(constant('JSON_PRETTY_PRINT')) }}</pre> | ||
</div> | ||
</div> | ||
|
||
<div class="clear"></div> | ||
</div> | ||
</div> | ||
|
||
<div id="foot"> | ||
<div class="grid"> | ||
<p><a target="_blank" href="https://github.com/MartyWallace/Tempest">Tempest Framework</a> · Developed by Marty Wallace.</p> | ||
</div> | ||
</div> | ||
{% endblock %} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// TODO: Get a real CSS reset in here. | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
|
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
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
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
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
Oops, something went wrong.