定制 sharkpp/sculpin-calendarian-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sharkpp/sculpin-calendarian-bundle

Composer 安装命令:

composer require sharkpp/sculpin-calendarian-bundle

包简介

This is a Bundle that generates the index page to blog date directory for Sculpin.

README 文档

README

日本語 ENGLISH

What is this?

This is a Bundle that generates the index page to blog date directory for Sculpin.

Setup

Add this bundle in your sculpin.json file:

{
    // ...
    "require": {
        // ...
        "sharkpp/sculpin-calendarian-bundle": "dev-master"
    }
}

and install this bundle running sculpin update.

Now you can register the bundle in SculpinKernel class available on app/SculpinKernel.php file:

<?php

class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
    protected function getAdditionalSculpinBundles()
    {
        return array(
           'Sharkpp\Sculpin\Bundle\CalendarianBundle\SculpinCalendarianBundle'
        );
    }
}

How to use

For example, create a source/blog/date.html file:

---
generator: calendarian
---

<h2>
{% if page.calendarian.year %}{{ page.calendarian.year }}-{% endif %}
{% if page.calendarian.month %}{{ page.calendarian.month }}-{% endif %}
{% if page.calendarian.day %}{{ page.calendarian.day }}-{% endif %}
</h2>

<ul>
    {% for item in page.calendarian.items %}
        <li><a href="{{ item.url }}">{{ item.title }}</a></li>
    {% endfor %}
</ul>

By creating in such content, and http://your.site.url/blog/2015/08/09/hoge.html, when there is such a page, the page is created based on the content that was created to http://your.site.url/blog/2015/ and http://your.site.url/blog/2015/08/ and http://your.site.url/blog/2015/08/09/, it can be accessed.

License

© 2015 sharkpp

This software is released under the MIT License, see LICENSE.

统计信息

  • 总下载量: 146
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-09