Created
July 26, 2012 23:16
-
-
Save mikekunze/3185185 to your computer and use it in GitHub Desktop.
Jade index template that uses twitter bootstrap for reportGenerator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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