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 %}
|
2019-04-03 11:41:33 +02:00
|
|
|
| {% from '_macros/_opengraph.html' import opengraph %}
|
|
|
|
include mixins/components
|
2018-09-20 15:00:10 +02:00
|
|
|
|
|
|
|
| {% set title = 'learn' %}
|
|
|
|
|
2019-04-03 11:41:33 +02:00
|
|
|
| {% set page_title = 'Learn' %}
|
|
|
|
| {% set page_description = 'Production quality training by Blender professionals.' %}
|
|
|
|
| {% set page_header_image = url_for('static', filename='assets/img/features/training_minecraft_animation.jpg', _external=true) %}
|
|
|
|
|
|
|
|
| {% block page_title %}{{ page_title }}{% endblock %}
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-04-03 15:43:53 +02:00
|
|
|
| {% block og %}
|
|
|
|
| {{ opengraph(page_title, page_description, page_header_image, request.url) }}
|
|
|
|
| {% endblock %}
|
|
|
|
|
2018-09-20 15:00:10 +02:00
|
|
|
| {% 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
|
2019-04-03 15:33:04 +02:00
|
|
|
+category_list_header('{{ page_title }}', '{{ page_description }}')
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
+category_list_item(
|
|
|
|
'COURSES',
|
2019-04-12 17:31:52 +02:00
|
|
|
'In-depth training for mastering every corner in Blender.',
|
2019-03-27 15:57:39 +01:00
|
|
|
"{{ url_for('cloud.courses') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/training_motion_graphics.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-04-12 17:31:11 +02:00
|
|
|
ul.list-unstyled.mt-3.mb-0.column-count-2.list-first-new
|
|
|
|
-
|
|
|
|
var projects = {
|
|
|
|
'Grease Pencil':'/p/grease-pencil-fundamentals',
|
|
|
|
'Scripting for Artists':'/p/scripting-for-artists',
|
|
|
|
'Motion Graphics':'/p/motion-graphics'
|
|
|
|
};
|
|
|
|
|
|
|
|
each url, title in projects
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href=url)
|
|
|
|
span=title
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href="{{ url_for('cloud.courses') }}")
|
|
|
|
| See all Courses
|
|
|
|
i.pi-angle-right
|
2019-04-12 17:31:38 +02:00
|
|
|
|
|
|
|
hr.mb-4
|
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-04-12 17:31:11 +02:00
|
|
|
ul.list-unstyled.mt-3.mb-0.column-count-2.list-first-new
|
|
|
|
-
|
|
|
|
var projects = {
|
|
|
|
'Speed Sculpting':'/p/speed-sculpting',
|
|
|
|
'Minecraft Animation':'/p/minecraft-animation-workshop',
|
|
|
|
'Low Poly Character Creation':'/p/low-poly-character-creation',
|
|
|
|
};
|
|
|
|
|
|
|
|
each url, title in projects
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href=url)
|
|
|
|
span=title
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href="{{ url_for('cloud.workshops') }}")
|
|
|
|
| See all Workshops
|
|
|
|
i.pi-angle-right
|
2019-04-12 17:31:38 +02:00
|
|
|
|
|
|
|
hr.mb-4
|
2019-03-27 15:57:39 +01:00
|
|
|
|
|
|
|
+category_list_item(
|
|
|
|
'PRODUCTION LESSONS',
|
2019-04-03 15:31:38 +02:00
|
|
|
'Tips and tricks by the Blender Open Movies crew.',
|
2019-03-27 15:57:39 +01:00
|
|
|
"{{ url_for('cloud.production') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/open_movies_02.jpg')}}")
|
2019-04-12 17:31:11 +02:00
|
|
|
ul.list-unstyled.mt-3.mb-0.column-count-2
|
|
|
|
-
|
|
|
|
var projects = {
|
|
|
|
'Walk-throughs':'/production#walk-through',
|
|
|
|
'Animation Tips':'/production#animation',
|
|
|
|
'Character Pipeline':'/production#character-pipeline'
|
|
|
|
};
|
|
|
|
|
|
|
|
each url, title in projects
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href=url)
|
|
|
|
span=title
|
|
|
|
li
|
|
|
|
a.d-block.py-1.text-primary(href="{{ url_for('cloud.production') }}")
|
|
|
|
| See all Production Lessons
|
|
|
|
i.pi-angle-right
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-03-27 15:57:39 +01:00
|
|
|
| {% endblock body %}
|