2018-09-05 17:03:49 +02:00
|
|
|
| {% extends 'layout.html' %}
|
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-05 17:03:49 +02:00
|
|
|
| {% block head %}
|
|
|
|
script(src="{{ url_for('static_cloud', filename='assets/js/tagged_assets.min.js') }}")
|
|
|
|
|
|
|
|
script.
|
|
|
|
$(function() {
|
2018-09-13 18:10:02 +02:00
|
|
|
$('.js-asset-list').loadTaggedAssets();
|
2018-09-05 17:03:49 +02:00
|
|
|
})
|
|
|
|
| {% endblock %}
|
|
|
|
| {% block body %}
|
2018-09-07 18:11:46 +02:00
|
|
|
.container.pb-5
|
|
|
|
.pt-4
|
|
|
|
h2.text-uppercase.font-weight-bold
|
|
|
|
| {{ self.page_title() }}
|
|
|
|
.lead
|
|
|
|
| {{ page_header_text }}
|
|
|
|
|
|
|
|
hr.pb-2
|
2018-09-05 17:03:49 +02:00
|
|
|
|
2018-09-13 18:10:02 +02:00
|
|
|
section.py-3.my-3.border-bottom
|
|
|
|
h3 Animation
|
|
|
|
.card-deck.card-padless.card-deck-responsive.list-unstyled(
|
|
|
|
class="js-asset-list",
|
|
|
|
data-asset-tag="animation")
|
|
|
|
|
|
|
|
section.py-3.my-3.border-bottom
|
|
|
|
h3 Modeling
|
|
|
|
.card-deck.card-padless.card-deck-responsive.list-unstyled(
|
|
|
|
class="js-asset-list",
|
|
|
|
data-asset-tag="modelling")
|
|
|
|
|
|
|
|
section.py-3.my-3.border-bottom
|
|
|
|
h3 Rigging
|
|
|
|
.card-deck.card-padless.card-deck-responsive.list-unstyled(
|
|
|
|
class="js-asset-list",
|
|
|
|
data-asset-tag="rigging")
|
|
|
|
|
|
|
|
section.py-3.my-3
|
|
|
|
h3 Pipeline
|
|
|
|
.card-deck.card-padless.card-deck-responsive.list-unstyled(
|
|
|
|
class="js-asset-list",
|
|
|
|
data-asset-tag="pipeline")
|
2018-09-07 18:11:46 +02:00
|
|
|
|
2018-09-05 17:03:49 +02:00
|
|
|
| {% endblock body%}
|