You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.2 KiB

  1. <div class="narrow">
  2. <?= partial('partials/header') ?>
  3. <h2>Introduction</h2>
  4. <div class="col-xs-6 col-md-4" style="float: right;">
  5. <span class="thumbnail"><img src="/images/quill-note-interface.png"></span>
  6. </div>
  7. <p>Quill is a simple <a href="https://indieweb.org/micropub">Micropub</a> client for
  8. creating posts on your own website. To use it, your website will need to have
  9. a Micropub endpoint, and this app will send requests to it to create posts.</p>
  10. <p>There are Micropub plugins for various content management systems such as
  11. <a href="https://wordpress.org/plugins/micropub/">Wordpress</a>, and is supported
  12. natively by some software such as <a href="https://withknown.com">Known</a>.
  13. It's also a relatively simple protocol you can implement if you are building
  14. your own website.</p>
  15. <p>Once you've signed in, you'll be able to use the various interfaces see an interface like the one shown which you can use to
  16. write a post. Clicking "post" will make a Micropub request to your endpoint.<p>
  17. <ul>
  18. <?php foreach($this->pages as $k=>$v): ?>
  19. <li><a href="/docs/<?= $k ?>"><?= $v ?></a></li>
  20. <?php endforeach; ?>
  21. </ul>
  22. </div>