Introducing Pillar Framework
Refactor of pillar-server and pillar-web into a single python package. This simplifies the overall architecture of pillar applications. Special thanks @sybren and @venomgfx
This commit is contained in:
25
src/templates/upload.jade
Normal file
25
src/templates/upload.jade
Normal file
@@ -0,0 +1,25 @@
|
||||
| {% 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 %}
|
Reference in New Issue
Block a user