Navigation: Unified cloud navigation

* Removed main drop down menu
* Added "My cloud" to user menu
* Attract/Flamenco is found under Production Tools menu
* Attract/Flamenco has the same navigation as its project
This commit is contained in:
2019-02-06 10:31:36 +01:00
parent 1101b8e716
commit a5bae513e1
8 changed files with 61 additions and 46 deletions

View File

@@ -4,13 +4,20 @@
| {% set title = 'blog' %}
| {% block css %}
| {{ super() }}
| {% if project.url != 'blender-cloud' %}
link(href="{{ url_for('static_cloud', filename='assets/css/project-main.css') }}", rel="stylesheet")
| {% endif %}
| {% endblock %}
| {% block page_title %}Blog{% endblock%}
| {% block navigation_tabs %}
| {% if project.url == 'blender-cloud' %}
| {{ navigation_homepage(title) }}
| {% else %}
| {{ navigation_project(project, navigation_links, title) }}
| {{ navigation_project(project, navigation_links, extension_sidebar_links, title) }}
| {% endif %}
| {% endblock navigation_tabs %}