Created
November 17, 2016 17:16
-
-
Save mfd/e4672fc37312e19d6432563ac442ee7b to your computer and use it in GitHub Desktop.
jade extends
This file contains 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
//- index.pug | |
extends layout | |
block modalWrap | |
- modalClass.push('company_user') | |
block modal-body |
This file contains 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
//- layout.pug | |
- var modalClass = []; | |
block modalWrap | |
.modal-dialog(class=modalClass) | |
.modal-content | |
block modal-header | |
.modal-header | |
header=modalHead | |
block modal-body | |
.modal-body | |
block modal-footer | |
.modal-footer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment