ppoffice / hexo-component-inferno

A collection of Inferno.js layout components and utility scripts for Hexo
https://ppoffice.github.io/hexo-component-inferno/
24 stars 30 forks source link

fix(view): cannot specify “type” of archives widget #60

Closed imaegoo closed 1 year ago

imaegoo commented 1 year ago

widget.type should always be "archives" here, we cannot specify the “type” of archives widget in _config.icarus.yml

widgets:
    -
        position: left
        type: archives
        type: monthly # BAD
        format: 'YYYY年M月'

so I change "type" to "group_by"

widgets:
    -
        position: left
        type: archives
        group_by: monthly # GOOD
        format: 'YYYY年M月'