Skip to content

Instantly share code, notes, and snippets.

@mikekunze
Created July 26, 2012 23:16
Show Gist options
  • Save mikekunze/3185185 to your computer and use it in GitHub Desktop.
Save mikekunze/3185185 to your computer and use it in GitHub Desktop.
Jade index template that uses twitter bootstrap for reportGenerator
extends layout
block content
for item in items
.container-fluid(style='page-break-after:always')
.well
.row-fluid
h2 #{item.Title}
hr
h5 Content:
p
!= item.Content
hr
h5 Feedback:
p
!= item.Feedback
hr
- if (item.TextArea1)
h5 TextArea1:
p
!= item.TextArea1
hr
- if (item.TextArea2)
h5 TextField2:
p
!= item.TextArea2
hr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment