Skip to content

Instantly share code, notes, and snippets.

@cooljl31
Forked from StanBoyet/modal.slim.html
Created June 27, 2017 12:32
Show Gist options
  • Save cooljl31/eae525310dd82ae9b58012a6b38b9caa to your computer and use it in GitHub Desktop.
Save cooljl31/eae525310dd82ae9b58012a6b38b9caa to your computer and use it in GitHub Desktop.
Boostrap Modal in Slim
/ 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