2016-08-19 09:19:06 +02:00
|
|
|
| {% extends 'layout.html' %}
|
|
|
|
| {% from '_macros/_navigation.html' import navigation_tabs %}
|
|
|
|
|
|
|
|
| {% set title = 'home' %}
|
|
|
|
|
|
|
|
| {% block og %}
|
|
|
|
meta(property="og:type", content="website")
|
2017-02-06 14:37:53 +01:00
|
|
|
meta(property="og:url", content="https://cloud.blender.org{{ request.path }}")
|
2016-08-19 09:19:06 +02:00
|
|
|
|
2017-02-06 14:37:53 +01:00
|
|
|
meta(property="og:title", content="Blender Cloud - Home")
|
2016-08-19 09:19:06 +02:00
|
|
|
meta(name="twitter:title", content="Blender Cloud")
|
2017-02-06 14:37:53 +01:00
|
|
|
|
|
|
|
meta(property="og:image", content="{{ url_for('static', filename='assets/img/backgrounds/cloud_services_oti.jpg')}}")
|
2016-08-19 09:19:06 +02:00
|
|
|
meta(name="twitter:image", content="{{ url_for('static', filename='assets/img/backgrounds/cloud_services_oti.jpg')}}")
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
| {% block page_title %}
|
|
|
|
| {{current_user.full_name}}
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
| {% block body %}
|
|
|
|
.dashboard-container
|
2017-11-24 19:34:58 +01:00
|
|
|
section.dashboard-main
|
2016-08-19 09:19:06 +02:00
|
|
|
| {{ navigation_tabs(title) }}
|
|
|
|
|
|
|
|
section#projects
|
|
|
|
|
2017-11-24 19:34:58 +01:00
|
|
|
nav#sub-nav-tabs.home
|
2016-08-19 09:19:06 +02:00
|
|
|
ul#sub-nav-tabs__list
|
2017-11-21 14:48:59 +01:00
|
|
|
li.nav-tabs__list-tab#subtab-blender_sync(data-tab-url="{{ url_for('projects.home_project')}}")
|
2016-08-19 09:19:06 +02:00
|
|
|
i.pi-blender
|
|
|
|
| Blender Sync
|
|
|
|
|
2017-11-21 14:48:59 +01:00
|
|
|
li.nav-tabs__list-tab#subtab-images(data-tab-url="{{ url_for('projects.home_project_shared_images')}}")
|
2016-08-19 09:19:06 +02:00
|
|
|
i.pi-picture
|
|
|
|
| Images
|
|
|
|
| {% block currenttab %}{% endblock %}
|
|
|
|
|
2017-11-24 19:34:58 +01:00
|
|
|
section.dashboard-secondary
|
2016-10-07 16:42:42 +02:00
|
|
|
section.announcement
|
2018-08-31 19:31:36 +02:00
|
|
|
a(href="https://cloud.blender.org/blog/introducing-blender-sync")
|
|
|
|
img.header(
|
|
|
|
src="{{ url_for('static', filename='assets/img/blender_sync_header.jpg') }}")
|
2016-08-19 09:19:06 +02:00
|
|
|
.text
|
|
|
|
| {% block side_announcement %}
|
2018-08-31 19:31:36 +02:00
|
|
|
h5
|
|
|
|
a.text-muted(href="https://cloud.blender.org/blog/introducing-blender-sync")
|
|
|
|
| Blender Sync
|
2016-08-19 09:19:06 +02:00
|
|
|
|
|
|
|
.lead
|
2018-08-31 19:31:36 +02:00
|
|
|
p.
|
2016-08-19 09:19:06 +02:00
|
|
|
Save your settings once. Use them anywhere.
|
|
|
|
Carry your Blender configuration with you, use our free add-on to sync your keymaps and preferences.
|
2018-08-31 19:31:36 +02:00
|
|
|
#[hr]
|
2016-08-19 09:19:06 +02:00
|
|
|
Syncing is free for everyone. No subscription required.
|
|
|
|
| {% endblock %}
|
2018-08-31 19:31:36 +02:00
|
|
|
|
2016-08-19 09:19:06 +02:00
|
|
|
| {% if show_addon_download_buttons %}
|
2018-08-31 19:31:36 +02:00
|
|
|
.row
|
|
|
|
.col-md-8
|
|
|
|
a.btn.btn-block.btn-outline-success(
|
|
|
|
href="https://cloud.blender.org/r/downloads/blender_cloud-latest-bundle.zip")
|
|
|
|
i.pi-download
|
|
|
|
| Download <small>v</small>{{ config.BLENDER_CLOUD_ADDON_VERSION }}
|
|
|
|
.col-md-4
|
|
|
|
a.btn.btn-link(
|
|
|
|
href="{{ learn_more_btn_url }}")
|
|
|
|
| Learn More
|
|
|
|
i.pi-angle-right
|
2016-08-19 09:19:06 +02:00
|
|
|
| {% endif %}
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
| {% block footer_scripts %}
|
|
|
|
script.
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('#subtab-{{ subtab }}').addClass('active');
|
|
|
|
var $nav_tabs = $('#sub-nav-tabs__list').find('li.nav-tabs__list-tab');
|
|
|
|
$nav_tabs.on('click', function (e) {
|
|
|
|
window.location = $(this).attr('data-tab-url');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
| {% endblock %}
|