Files
blender-cloud/src/templates/production.pug

57 lines
1.7 KiB
Plaintext
Raw Normal View History

| {% extends 'layout.html' %}
2018-09-19 11:20:17 +02:00
| {% from '_macros/_navigation.html' import navigation_collection %}
2018-09-18 16:54:57 +02:00
include ../../../pillar/src/templates/mixins/components
mixin group(title, tag)
2018-09-19 11:20:17 +02:00
.row
section.py-3.my-3.border-bottom.col-12
2018-09-18 16:54:57 +02:00
2018-09-19 11:20:17 +02:00
h4.title-underline.mb-4= title
+card-deck(data-asset-tag=tag, class="js-asset-list py-3")
2018-09-18 16:54:57 +02:00
2018-09-13 18:10:02 +02:00
| {% block page_title %}Production Lessons{% endblock %}
| {% set page_header_text = "Tips and tricks by the Open Movie crew." %}
2018-09-07 18:11:46 +02:00
2018-09-19 11:20:17 +02:00
| {% block navigation_tabs %}
| {{ navigation_collection(title) }}
| {% endblock navigation_tabs %}
| {% block head %}
script(src="{{ url_for('static_cloud', filename='assets/js/tagged_assets.min.js') }}")
script.
$(function() {
$('.js-asset-list').loadTaggedAssets(5, 3);
2018-09-19 11:20:17 +02:00
});
| {% endblock %}
| {% block body %}
2018-09-19 11:20:17 +02:00
+jumbotron(
'{{ self.page_title() }}',
'{{ page_header_text }}',
"{{ url_for('static', filename='assets/img/backgrounds/background_agent327_04.jpg')}}")(
2018-09-19 15:50:03 +02:00
class="jumbotron-overlay",
style="background-position: center top")
2018-09-18 16:54:57 +02:00
.container
2018-09-19 16:15:31 +02:00
+group('Walk-through', 'walk-through')
2018-09-19 11:34:13 +02:00
+group('Modeling', 'modeling')
2018-09-18 16:54:57 +02:00
+group('Sculpting', 'sculpting')
+group('Animation', 'animation')
+group('Shading', 'shading')
+group('Texturing', 'texturing')
+group('Character Pipeline', 'character-pipeline')
+group('Rigging', 'rigging')
+group('Lighting & Rendering', 'lighting')
+group('Simulation & Effects', 'effects')
2018-09-19 11:34:13 +02:00
+group('Video Editing', 'video-editing')
2018-09-19 15:53:51 +02:00
+group('Digital Painting', 'digital-painting')
2018-09-19 16:15:31 +02:00
+group('Production Design', 'production-design')
2018-09-18 16:54:57 +02:00
a.d-block.py-5.text-center.text-muted(
href="{{ url_for('main.nodes_search_index') }}")
2018-09-19 11:20:17 +02:00
| Search Blender Cloud to find even more content
i.pi-angle-right.pl-1
2018-09-07 18:11:46 +02:00
| {% endblock body%}