2017 © Pedro Peláez
 

library sculpin-related-posts-bundle

Sculpin Related Posts Bundle

image

tsphethean/sculpin-related-posts-bundle

Sculpin Related Posts Bundle

  • Wednesday, July 22, 2015
  • by tsphethean
  • Repository
  • 0 Watchers
  • 5 Stars
  • 948 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 2 Open issues
  • 2 Versions
  • 13 % Grown

The README.md

Sculpin Related Posts Bundle

Create blocks showing sources with matching tags for Sculpin powered sites., (*1)

Setup

Add this bundle in your sculpin.json file:, (*2)

{
    // ...
    "require": {
        // ...
        "tsphethean/sculpin-related-posts-bundle": "~0.1.0"
    }
}

and install this bundle running sculpin update., (*3)

Now you can register the bundle in SculpinKernel class available on app/SculpinKernel.php file:, (*4)

class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
    protected function getAdditionalSculpinBundles()
    {
        return array(
           'Tsphethean\Sculpin\Bundle\RelatedPostsBundle\SculpinRelatedPostsBundle'
        );
    }
}

How to use

In your template:, (*5)

{% if page.related %}
<ul>
  {% for relate in page.related %}
  <li><a href="{{ relate.source.url }}">{{ relate.title }}</a></li>
  {% endfor %}
</ul>
{% endif %}

The Versions

22/07 2015

dev-master

9999999-dev https://sculpin.io

Sculpin Related Posts Bundle

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

static blog blogging site related posts

21/03 2014

0.1.0

0.1.0.0 https://sculpin.io

Sculpin Related Posts Bundle

  Sources   Download

MIT

The Requires

  • php >=5.3.2

 

static blog blogging site related posts