jflepp / picofiletime
A plugin for Pico to set the page creation date from the last write of the file
Installs: 48
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:pico-plugin
Requires (Dev)
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2025-03-29 00:58:06 UTC
README
A pico plugin to take the creation date from the file last write time.
Features 100% test coverage (without wrappers and connectors)
Pull requests welcome!
Installation
Install via composer composer require jflepp/picofiletime
Usage in themes
{% for page in pages %} <li>{{ page.id }} - <a href="{{ page.url }}">{{ page.url }}</a> - {{ page.meta.creation_date }}</li> {% endfor %}
{{ current_page.meta.creation_date }}
Configuration
PicoFileTime provides no additional configuration, but you can use Picos inbuilt configuration to sort pages according to their creation date:
pages_order_by_meta: creation_date pages_order_by: meta pages_order: desc