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:
2016-08-19 09:19:06 +02:00
parent a5e92e1d87
commit 2c5dc34ea2
232 changed files with 79508 additions and 2232 deletions

25
src/templates/upload.jade Normal file
View 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 %}