mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-12 08:41:46 -05:00
24 lines
666 B
Text
24 lines
666 B
Text
|
extends /templates/core/modal-base-flat
|
||
|
|
||
|
block modal-header-content
|
||
|
h3(data-i18n='') Image Gallery
|
||
|
| Copy these images into your webpage, or find your own image URLs online.
|
||
|
|
||
|
block modal-body-content
|
||
|
dl.dl-horizontal
|
||
|
for image in view.images
|
||
|
dt
|
||
|
img(src=image.portraitURL)
|
||
|
dd
|
||
|
ul.list-unstyled
|
||
|
li
|
||
|
span.no-select= 'URL: '
|
||
|
kbd= image.portraitURL
|
||
|
br
|
||
|
li
|
||
|
span.no-select= '<img>: '
|
||
|
kbd= '<img src="' + image.portraitURL + '">'
|
||
|
|
||
|
block modal-footer-content
|
||
|
a(href='#', data-dismiss="modal", aria-hidden="true", data-i18n="modal.close").btn.btn-primary Close
|