mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 23:44:55 +08:00
f1b74f1906
This will make sure browsers don't display old, cached images to clients.
27 lines
1.5 KiB
Text
27 lines
1.5 KiB
Text
<!-- introductory popup modal -->
|
|
<div class="modal" id="introductory-popup-modal" tabindex="-1" role="dialog" aria-labelledby="introductory-modal-label">
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title" id="introductory-modal-label"><%=t 'introductory.popup-title' %></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p><%= t('introductory.sentence_one_html') %></p>
|
|
<%= image_tag 'introductory_popup/image1a.png', class: 'img-responsive center-block' %>
|
|
<p><%=t 'introductory.sentence_two_html' %></p>
|
|
<p><%=t 'introductory.sentence_three_html' %></p>
|
|
<p><%=t 'introductory.sentence_four_html' %></p>
|
|
<%= image_tag 'introductory_popup/image2a.png', class: 'img-responsive center-block' %>
|
|
<p><%=t 'introductory.sentence_five_html' %></p>
|
|
<p><%=t 'introductory.sentence_six_html' %></p>
|
|
<%= image_tag 'introductory_popup/image3a.png', class: 'img-responsive center-block' %>
|
|
<p><%=t 'introductory.sentence_seven_html' %></p>
|
|
<%= image_tag 'introductory_popup/image4a.png', class: 'img-responsive center-block' %>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><%=t 'introductory.confim' %></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|