Start of "production videos", a.k.a. tagged assets overview
Tagged assets are shown in a list per tag. The list is dynamically loaded with JavaScript.
This commit is contained in:
35
src/templates/production.pug
Normal file
35
src/templates/production.pug
Normal file
@@ -0,0 +1,35 @@
|
||||
| {% extends 'layout.html' %}
|
||||
| {% block page_title %}Production of Stuff{% endblock %}
|
||||
| {% block head %}
|
||||
script(src="{{ url_for('static_cloud', filename='assets/js/tagged_assets.min.js') }}")
|
||||
|
||||
script.
|
||||
$(function() {
|
||||
$('ul.asset-list').loadTaggedAssets();
|
||||
})
|
||||
| {% endblock %}
|
||||
| {% block body %}
|
||||
#page-container
|
||||
#page-content
|
||||
h2 Production of Stuff
|
||||
p.
|
||||
Here are our hand-selected assets 'bout stuff.
|
||||
|
||||
h3 Animation
|
||||
ul.asset-list(data-asset-tag="animation")
|
||||
|
||||
h3 Modelling
|
||||
ul.asset-list(data-asset-tag="modelling")
|
||||
|
||||
h3 Rigging
|
||||
ul.asset-list(data-asset-tag="rigging")
|
||||
|
||||
h3 pipeline
|
||||
ul.asset-list(data-asset-tag="pipeline")
|
||||
|
||||
h3 lookdev
|
||||
ul.asset-list(data-asset-tag="lookdev")
|
||||
|
||||
h3 crazyspace
|
||||
ul.asset-list(data-asset-tag="crazyspace")
|
||||
| {% endblock body%}
|
Reference in New Issue
Block a user