##// END OF EJS Templates
Loading a file works
Loading a file works

File last commit:

r19011:82765a7d
r19011:82765a7d
Show More
texteditor.html
29 lines | 545 B | text/html | HtmlLexer
Thomas Kluyver
Basic infrastructure for new texteditor component
r19010 {% extends "page.html" %}
{% block title %}{{page_title}}{% endblock %}
Thomas Kluyver
Loading a file works
r19011 {% block stylesheet %}
<link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
{{super()}}
{% endblock %}
Thomas Kluyver
Basic infrastructure for new texteditor component
r19010 {% block params %}
data-base-url="{{base_url}}"
Thomas Kluyver
Loading a file works
r19011 data-file-path="{{file_path}}"
Thomas Kluyver
Basic infrastructure for new texteditor component
r19010
{% endblock %}
{% block site %}
<div id="texteditor-container"></div>
{% endblock %}
{% block script %}
{{super()}}
<script src="{{ static_url("texteditor/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}