docs.html 763 B

12345678910111213141516171819202122232425262728
  1. ---
  2. layout: default
  3. title: Docs
  4. nav: 2
  5. ---
  6. <div class="light-wrapper">
  7. <div class="inner">
  8. <h1 class="aligncenter">Pico Documentation</h1>
  9. <p class="description aligncenter">
  10. Pico is a flat file CMS, this means there is no administration backend or database to deal with.<br />
  11. You simply create .md files in the "content" folder and that becomes a page.
  12. </p><br />
  13. <div class="one-fourth">
  14. <!-- ToDo -->
  15. </div>
  16. <div class="three-fourth last">
  17. {% for doc in site.docs %}
  18. <!-- path = {{ doc.path }} -->
  19. {{ doc.output }}
  20. {% endfor %}
  21. <hr>
  22. </div>
  23. <div class="clear"></div>
  24. </div>
  25. </div>