yosymfony / spress-plugin-dataloader
Dataloader plugin for Spress
Installs: 194
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 1
Open Issues: 0
Type:spress-plugin
Requires
- spress/spress-installer: 2.0.*
This package is auto-updated.
Last update: 2024-10-13 04:15:59 UTC
README
Loads data located at ./src/data/
folder of your site.
This plugin requires Spress >= 2.0. If you are using Spress 1.x, go to 1.0.0 version of the plugin.
How to install?
Go to your site folder and input the following command:
$ spress add:plugin yosymfony/spress-plugin-dataloader
How to use?
Go to your Spress site an create ./src/data
folder. In this folder you can to create
JSON, YAML, Markdown or Textfiles that will be available in site.data.<yourFilenameWithoutExtension>
.
Example with an users array and a Json file:
./src/data/
|- blogUsers.json
Example with an users array and a Yaml file (the extension yaml
is valid too):
./src/data/
|- blogUsers.yml
For markdown files the extension md
or markdown
are valid.
Text file extensions are txt
or text
.
Markdown and text files are available as string.
Access to this data in Twig templates:
{% for theme in site.data.blogUsers %} ... {% endfor %}