2018-09-20 15:00:10 +02:00
|
|
|
| {% extends 'layout.html' %}
|
2019-02-06 10:31:36 +01:00
|
|
|
| {% from '_macros/_navigation.html' import navigation_homepage %}
|
2018-09-20 15:00:10 +02:00
|
|
|
include ../../../pillar/src/templates/mixins/components
|
|
|
|
|
|
|
|
| {% set title = 'learn' %}
|
|
|
|
|
|
|
|
| {% block page_title %}Learn{% endblock %}
|
|
|
|
|
|
|
|
| {% block navigation_tabs %}
|
2019-02-06 10:31:36 +01:00
|
|
|
| {{ navigation_homepage(title) }}
|
2018-09-20 15:00:10 +02:00
|
|
|
| {% endblock navigation_tabs %}
|
|
|
|
|
|
|
|
| {% block body %}
|
2019-03-27 15:57:39 +01:00
|
|
|
.container.py-4
|
2018-09-20 15:00:10 +02:00
|
|
|
.row
|
|
|
|
.col-12
|
2019-03-27 15:57:39 +01:00
|
|
|
h2.text-uppercase.font-weight-bold
|
|
|
|
| Learn
|
|
|
|
.lead
|
|
|
|
| Production quality training by Blender professionals.
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
hr.pb-2
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
+category_list_item(
|
|
|
|
'COURSES',
|
|
|
|
'Character modeling, 3D printing, VFX, rigging and more.',
|
|
|
|
"{{ url_for('cloud.courses') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/training_motion_graphics.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
hr
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
+category_list_item(
|
|
|
|
'WORKSHOPS',
|
|
|
|
'Enter the artist workshop and learn by example.',
|
|
|
|
"{{ url_for('cloud.workshops') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/training_minecraft_animation.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
hr
|
|
|
|
|
|
|
|
+category_list_item(
|
|
|
|
'PRODUCTION LESSONS',
|
|
|
|
'Tips and tricks by the Open Projects crew.',
|
|
|
|
"{{ url_for('cloud.production') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/open_movies_02.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
| {% endblock body %}
|