mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-04 12:51:12 -05:00
22 lines
627 B
Text
22 lines
627 B
Text
|
|
||
|
button.close-hint-btn.btn.btn-illustrated.btn-danger
|
||
|
span.glyphicon.glyphicon-remove
|
||
|
|
||
|
h1.text-center.hint-title
|
||
|
span= view.state.get('hintsTitle')
|
||
|
|
||
|
.hint-body
|
||
|
!= view.getProcessedHint()
|
||
|
|
||
|
.row.btn-area
|
||
|
.col-md-4
|
||
|
if view.state.get('hintIndex') > 0
|
||
|
button.previous-btn.btn.btn-illustrated.pull-left(data-i18n="about.previous")
|
||
|
.col-md-4
|
||
|
h2.text-center.hint-pagination #{view.state.get('hintIndex')+1} / #{view.hintsState.get('total')}
|
||
|
.col-md-4
|
||
|
if view.state.get('hintIndex') < view.hintsState.get('total') - 1
|
||
|
button.next-btn.btn.btn-illustrated.pull-right(data-i18n="about.next")
|
||
|
|
||
|
.clearfix
|