picocms / picocms.github.io

This is the repository of Pico's official website. Pico is a stupidly simple, blazing fast, flat file CMS.
http://picocms.org/
29 stars 38 forks source link

Update Website & Documentation #7

Open PhrozenByte opened 7 years ago

PhrozenByte commented 7 years ago

@PhrozenByte commented on 6 Feb 2016

This is a long-live issue to track and discuss wished updates of our website resp. documentation.

Please refer to picocms/Pico#323 for previous discussions.

Website

Decisions to make

Documentation

PhrozenByte commented 7 years ago

New:

  • Add a basic YAML tutorial/guide/howto
  • Add a basic Markdown tutorial/guide/howto
stefanocpp commented 6 years ago

Hello! About improving cookbooks, I have a proposal about feed generation. The code there puts everything up in the feed, while you might just want to push out new stories or articles. I tried and used some code @PhrozenByte suggested some time ago to rule-out pages without a date or a meta.unlisted.

The idea is to replace {% for page in pages if page.id not in ['index','feed'] and not end %} with {% for page in pages if page.time and not page.meta.unlisted %}