dev-master
9999999-dev https://sculpin.ioSculpin Projects Bundle
MIT
The Requires
- php >=5.3.2
static blog blogging site projects
Wallogit.com
2017 © Pedro Pelรกez
Sculpin Projects Bundle
Add this bundle in your sculpin.json file:, (*1)
{
// ...
"require": {
// ...
"mavimo/sculpin-projects-bundle": "@dev"
}
}
and install this bundle running sculpin update., (*2)
Now you can register the bundle in SculpinKernel class available on app/SculpinKernel.php file:, (*3)
class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
protected function getAdditionalSculpinBundles()
{
return array(
'Mavimo\Sculpin\Bundle\ProjectsBundle\SculpinProjectsBundle'
);
}
}
In your sources create a subfolder _projects and add some file inside it, like:, (*4)
my-blog/
โโโ source
โโโ // ...
โโโ _projects
โโโ 2014-01-01-my-new-project.md
โโโ 2014-01-02-another-project.md
โโโ 2014-01-03-more-projects.md
create the required template files, and get the list of projects using in document metadata to have the paginated list of projects:, (*5)
---
title: Projects
// ...
generator: pagination
pagination:
provider: data.projects
// ...
---
Sculpin Projects Bundle
MIT
static blog blogging site projects