I am using Jekyll. What are the differences between a post and a page? As far as I can see:
There are couple difference mostly about how page will be generated and handled:
Post is any document living in _posts directory. If is handled by site.posts
collection and final URL will be generated using permalink configured in config yaml file.
Pages are any documents living outside _posts directory - they will always remain relative path to root directory as URL.
Except of that and mentioned by you differences they both work the same. Some plugins are handling them differently, but it's up to plugin developer(there are no guidelines about this topic).
Here are the differences
/2000/01/01/my-post.html
and /about.html
)._posts
folder. A post represents a blog post (so it is used to easily create a blog post). A page represents a website page.