path_tmpl.coffee 319 B

12345
  1. app.templates.path = (doc, type, entry) ->
  2. html = """<a href="#{doc.fullPath()}" class="_path-item _icon-#{doc.icon}">#{doc.fullName}</a>"""
  3. html += """<a href="#{type.fullPath()}" class="_path-item">#{type.name}</a>""" if type
  4. html += """<span class="_path-item">#{$.escape entry.name}</span>""" if entry
  5. html