tsphethean/sculpin-related-posts-bundle
Composer 安装命令:
composer require tsphethean/sculpin-related-posts-bundle
包简介
Sculpin Related Posts Bundle
README 文档
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 %}
统计信息
- 总下载量: 2.04k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-02-23