Created
September 8, 2014 09:46
-
-
Save StanBoyet/448f04f44d88c21522fa to your computer and use it in GitHub Desktop.
Boostrap Modal in Slim
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
/ Simple Slim translation of Bootstrap modal | |
.modal.fade.bs-example-modal-lg id="myModal" tabindex='-1' role='dialog' aria-labelledby="Modal Title" aria-hidden='true' | |
.modal-dialog.modal-lg | |
.modal-content | |
.modal-header | |
button.close type='button' data-dismiss='modal' | |
span aria-hidden='true' × | |
span.sr-only Close | |
h4.modal-title = "Modal Title" | |
.modal-body | |
p Body | |
.modal-footer | |
button.btn.btn-danger type='button' data-dismiss='modal' Close | |
button.btn.btn-primary type='button' Save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment