Skip to content

Instantly share code, notes, and snippets.

@1ncrement
Created February 28, 2016 20:25
Show Gist options
  • Save 1ncrement/9bf5fb6fa961523cf08f to your computer and use it in GitHub Desktop.
Save 1ncrement/9bf5fb6fa961523cf08f to your computer and use it in GitHub Desktop.
modalBootstrap
//modal start
button(type='button' class='btn btn-lg' data-toggle="modal" data-target="#myModal") Launch demo modal
.modal.fade#myModal(tabindex="-1" role="dialog" aria-labelledby="myModalLabel")
.modal-dialog
.modal-content
.modal-header
button.close(type="button" data-dismiss="modal" aria-label="Close")
span(aria-hidden="true") ×
h4.modal-title#myModalLabel Modal title
.modal-body ...
.modal-footer
button.btn.btn-default(type="button" data-dismiss="modal") Close
button.btn.btn-primary(type="button") Save changes
//modal end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment