##// END OF EJS Templates
Fix overzealous auto escape...
Matthias Bussonnier -
Show More
@@ -265,7 +265,10 b' data-notebook-path="{{notebook_path}}"'
265 {% for helplinks in sections %}
265 {% for helplinks in sections %}
266 {% for link in helplinks %}
266 {% for link in helplinks %}
267 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
267 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
268 {{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}}
268 {% if link[2] %}
269 <i class="fa fa-external-link menu-icon pull-right"></i>
270 {% endif %}
271
269 {{link[1]}}
272 {{link[1]}}
270 </a></li>
273 </a></li>
271 {% endfor %}
274 {% endfor %}
@@ -319,7 +322,7 b' data-notebook-path="{{notebook_path}}"'
319 {% block script %}
322 {% block script %}
320 {{super()}}
323 {{super()}}
321 <script type="text/javascript">
324 <script type="text/javascript">
322 sys_info = {{sys_info}};
325 sys_info = {{sys_info|safe}};
323 </script>
326 </script>
324
327
325 <script src="{{ static_url("components/text-encoding/lib/encoding.js") }}" charset="utf-8"></script>
328 <script src="{{ static_url("components/text-encoding/lib/encoding.js") }}" charset="utf-8"></script>
General Comments 0
You need to be logged in to leave comments. Login now