.ulist id=@id class=

- if title?
  .title=title
ul class=(checklist || @style)
  - items.each do |item|
    li
      p
        - if checklist && (item.attr? :checkbox)
          =%(#{(item.attr? :checked) ? marker_checked : marker_unchecked}#{item.text})
        - else
          =item.text
      - if item.blocks?
        =item.content