diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-05-25 22:23:51 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-05-25 22:23:51 -0700 |
commit | 9ff3e59193a9e300860c58ae1e65a4c55b0d21b0 (patch) | |
tree | 51cb4f8038b5cf7c0776f75e287dc0d0131d38b1 /views/docs.php | |
parent | a3701e1e4f248ddb2e9fda275e55febecadc32cc (diff) |
removes top nav bar from design. new logo. adds a mechanism to add the post interface to your home screen.
Diffstat (limited to 'views/docs.php')
-rw-r--r-- | views/docs.php | 41 |
1 files changed, 23 insertions, 18 deletions
diff --git a/views/docs.php b/views/docs.php index f9d5384..48fd0d8 100644 --- a/views/docs.php +++ b/views/docs.php @@ -1,26 +1,31 @@ -<h2>Introduction</h2> +<div class="narrow"> + <?= partial('partials/header') ?> -<div class="col-xs-6 col-md-4" style="float: right;"> - <span class="thumbnail"><img src="/images/indiepost-ui.png"></span> -</div> + <h2>Introduction</h2> -<p>This is a simple <a href="http://indiewebcamp.com/micropub">Micropub</a> client for - creating text posts on your own website. To use it, you will need to turn your website - into an OAuth provider, and implement a Micropub endpoint that this app will send - requests to.</p> + <div class="col-xs-6 col-md-4" style="float: right;"> + <span class="thumbnail"><img src="/images/quill-ui.png"></span> + </div> -<p>Once you've signed in, you'll see an interface like the one shown which you can use to - write a post. Clicking "post" will make a Micropub request to your endpoint.<p> + <p>This is a simple <a href="http://indiewebcamp.com/micropub">Micropub</a> client for + creating text posts on your own website. To use it, you will need to turn your website + into an OAuth provider, and implement a Micropub endpoint that this app will send + requests to.</p> -<h2>Configuring Endpoints</h2> + <p>Once you've signed in, you'll see an interface like the one shown which you can use to + write a post. Clicking "post" will make a Micropub request to your endpoint.<p> -<h3>Authorization Endpoint</h3> -<?= partial('partials/auth-endpoint-help') ?> + <h2>Configuring Endpoints</h2> -<h3>Token Endpoint</h3> -<?= partial('partials/token-endpoint-help') ?> + <h3>Authorization Endpoint</h3> + <?= partial('partials/auth-endpoint-help') ?> -<h3>Micropub Endpoint</h3> -<?= partial('partials/micropub-endpoint-help') ?> + <h3>Token Endpoint</h3> + <?= partial('partials/token-endpoint-help') ?> -<p>The <a href="/creating-a-micropub-endpoint">Creating a Micropub Endpoint</a> tutorial will walk you through how to handle incoming POST requests from apps like this.</p> + <h3>Micropub Endpoint</h3> + <?= partial('partials/micropub-endpoint-help') ?> + + <p>The <a href="/creating-a-micropub-endpoint">Creating a Micropub Endpoint</a> tutorial will walk you through how to handle incoming POST requests from apps like this.</p> + +</div>
\ No newline at end of file |