extends layout

include about-section
include resort


block content
  +about('hidden')

  .content.resorts
    for resort in resorts
      +resort(resort)

  .content
    ul.tags
      li.starred
        a(href='/stars') Starred
          span.count
      li.all
        a(href='/') All
          span.count= all.length
      for obj, tag in tags
        li
          a(href='/tag/' + tag)= obj.label
            span.count= obj.members.length
