Affects the following templates: /projects/view.pug /projects/index_dashboard.pug /organizations/index.pug A lot of this layout is hardcoded for blender-cloud anyway. Eventually Pillar should have its own templates to use as starting point for building other Pillar apps. This should be built using the minimal amount of code possible and rely on styling possible via Bootstrap.
17 lines
308 B
Plaintext
17 lines
308 B
Plaintext
| {% extends 'layout.html' %}
|
|
| {% set title = 'dashboard' %}
|
|
|
|
| {% block page_title %}
|
|
| {{current_user.full_name}}
|
|
| {% endblock %}
|
|
|
|
| {% block body %}
|
|
.p-5.text-center
|
|
h2 Index Dashboard
|
|
p.lead.
|
|
See Blender Cloud template for reference.
|
|
| {% endblock %}
|
|
|
|
| {% block footer_scripts %}
|
|
| {% endblock %}
|