DannyBen/bobkit

View on GitHub
examples/07_markdown_layout/templates/layouts/default.slim

Summary

Maintainability
Test Coverage
doctype html

head
  title Bobkit Example
  link href='css/style.css' rel='stylesheet' type='text/css'

body
  - if have? :sidebar
    nav
      ul
        - sidebar.each do |title, link|
          a href="#{link}" title
    
  == yield