tsphethean / sculpin-related-posts-bundle
Sculpin Related Posts Bundle
Installs: 2 037
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 0
Forks: 1
Open Issues: 2
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2024-11-09 16:58:28 UTC
README
Create blocks showing sources with matching tags for Sculpin powered sites.
Setup
Add this bundle in your sculpin.json
file:
{ // ... "require": { // ... "tsphethean/sculpin-related-posts-bundle": "~0.1.0" } }
and install this bundle running sculpin update
.
Now you can register the bundle in SculpinKernel
class available on app/SculpinKernel.php
file:
class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel { protected function getAdditionalSculpinBundles() { return array( 'Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle' ); } }
How to use
In your template:
{% if page.related %}
<ul>
{% for relate in page.related %}
<li><a href="{{ relate.source.url }}">{{ relate.title }}</a></li>
{% endfor %}
</ul>
{% endif %}