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:42 +02:00
|
|
|
| {% from '_macros/_opengraph.html' import opengraph %}
|
|
|
|
include mixins/components
|
2018-09-20 15:00:10 +02:00
|
|
|
|
|
|
|
| {% set title = 'libraries' %}
|
|
|
|
|
2019-04-03 11:41:42 +02:00
|
|
|
| {% set page_title = 'Libraries' %}
|
|
|
|
| {% set page_description = 'Download 1000s of files and assets.' %}
|
|
|
|
| {% set page_header_image = url_for('static', filename='assets/img/features/characters_01.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:53 +01:00
|
|
|
.container.py-4
|
2019-04-03 15:31:14 +02:00
|
|
|
+category_list_header('LIBRARIES', null)
|
|
|
|
.lead
|
|
|
|
| Browse Textures and HDRI directly from Blender with our #[a(href="/services#blender-cloud-add-on") Blender Cloud add-on]!
|
2019-03-27 15:57:53 +01:00
|
|
|
|
|
|
|
+category_list_item(
|
|
|
|
'TEXTURES',
|
2019-04-03 15:31:14 +02:00
|
|
|
'More than 1500 texture maps. Public domain, do-whatever-you-like license.',
|
2019-03-27 15:57:53 +01:00
|
|
|
"{{ url_for('projects.view', project_url='textures') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/textures_01.jpg')}}")
|
|
|
|
|
|
|
|
hr
|
|
|
|
|
|
|
|
+category_list_item(
|
2019-04-03 15:31:14 +02:00
|
|
|
'HDR IMAGES',
|
|
|
|
'Up to 16K and 24 EVs (extremely high) HDRI to light your renders.',
|
2019-03-27 15:57:53 +01:00
|
|
|
"{{ url_for('projects.view', project_url='hdri') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/hdri_01.jpg')}}")
|
|
|
|
|
|
|
|
|
2019-04-03 15:31:14 +02:00
|
|
|
.pt-5
|
|
|
|
+category_list_header('HANDS-ON', 'Learn by example with ready-to-use characters and amazing artwork .blend files.')
|
2019-03-27 15:57:53 +01:00
|
|
|
|
|
|
|
+category_list_item(
|
|
|
|
'ART GALLERY',
|
2019-04-03 15:31:14 +02:00
|
|
|
'Learn by example browsing the .blends files from the best community artwork.',
|
2019-03-27 15:57:53 +01:00
|
|
|
"{{ url_for('projects.view', project_url='gallery') }}",
|
|
|
|
"{{ url_for('static', filename='assets/img/features/training_bob_forest.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
|
2019-04-03 15:31:14 +02:00
|
|
|
hr
|
|
|
|
|
|
|
|
+category_list_item(
|
|
|
|
'CHARACTERS',
|
|
|
|
'Production quality, fully rigged and shaded characters ready to animate.',
|
2019-04-03 15:47:59 +02:00
|
|
|
"{{ url_for('projects.view', project_url='characters') }}",
|
2019-04-03 15:31:14 +02:00
|
|
|
"{{ url_for('static', filename='assets/img/features/characters_01.jpg')}}")
|
2018-09-20 15:00:10 +02:00
|
|
|
| {% endblock body %}
|
|
|
|
|