0e8a1259579e9152f90bf764e5c32894d631d615
[oweals/karmaworld.git] / karmaworld / templates / notes / note_detail.html
1 <div id="note_container" class="">
2   {% if pdf_controls %}
3     <div id="zoom-buttons" class="row show-for-medium-up">
4       <div id="outline-btn-wrapper" class="small-1 columns hide show-for-medium-up">
5         <i id="outline-btn" class="zoom-button fa fa-bars fa-2x"></i>
6       </div>
7       <div class="small-4 columns">
8         <span>Jump to page:
9         <input id="scroll-to" type="text" style="width: 3em; display: inline" /></span>
10       </div>
11       <div class="small-2 small-centered columns center">
12         <i id="minus-btn" class="zoom-button fa fa-search-minus fa-2x"></i>
13         <i id="plus-btn" class="zoom-button fa fa-search-plus fa-2x"></i>
14       </div>
15     </div>
16   {% endif %}
17
18   <div class="row">
19     <div class="small-12 small-centered columns medium-12 large-12 body_copy">
20       <div id="note-content-wrapper" class="note-text">
21         {% if note.has_markdown %}
22           <span id="note-markdown" data-markdown="{{note.notemarkdown.markdown}}"></span>
23         {% else %}
24           <iframe style="border:none; width:100%; min-height: 1000px;"
25                 id="noteframe"></iframe>
26           <noscript>
27             {{ note.text }}
28           </noscript>
29         {% endif %}
30       </div> <!-- .note-text -->
31     </div><!-- /body_copy -->
32   </div>
33 </div><!-- /note_container -->