12345678910111213141516171819202122232425262728 |
- ---
- layout: default
- title: Docs
- nav: 2
- ---
- <div class="light-wrapper">
- <div class="inner">
- <h1 class="aligncenter">Pico Documentation</h1>
- <p class="description aligncenter">
- Pico is a flat file CMS, this means there is no administration backend or database to deal with.<br />
- You simply create .md files in the "content" folder and that becomes a page.
- </p><br />
- <div class="one-fourth">
- <!-- ToDo -->
- </div>
- <div class="three-fourth last">
- {% for doc in site.docs %}
- <!-- path = {{ doc.path }} -->
- {{ doc.output }}
- {% endfor %}
- <hr>
- </div>
- <div class="clear"></div>
- </div>
- </div>
|