Files
pillar/src/templates/upload.jade

26 lines
828 B
Plaintext
Raw Normal View History

| {% extends 'layout.html' %}
| {% block head %}
| {{ super() }}
// blueimp Gallery styles
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='assets/css/blueimp/blueimp-gallery.min.css') }}")
// CSS to style the file input field as button and adjust the Bootstrap progress bars
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='jquery-file-upload/css/jquery.fileupload.css') }}")
link(rel="stylesheet", href="{{ url_for('static_pillar', filename='jquery-file-upload/css/jquery.fileupload-ui.css') }}")
| {% endblock %}
| {% block body %}
.container
#project-container(style="background-color:white;padding:20px")
| {% include '_macros/_file_uploader_form.html' %}
| {% endblock %}
| {% block footer_scripts %}
| {% include '_macros/_file_uploader_javascript.html' %}
| {% endblock %}