2018-04-16 16:24:00 +02:00
|
|
|
| {% import 'projects/_macros.html' as projectmacros %}
|
2018-04-16 14:38:08 +02:00
|
|
|
| {% extends 'layout.html' %}
|
|
|
|
|
|
|
|
| {% block page_title %}{{ project.name }}{% endblock%}
|
|
|
|
|
|
|
|
| {% block og %}
|
|
|
|
meta(property="og:type", content="website")
|
|
|
|
|
|
|
|
| {% if og_picture %}
|
|
|
|
meta(property="og:image", content="{{ og_picture.thumbnail('l', api=api) }}")
|
|
|
|
meta(name="twitter:image", content="{{ og_picture.thumbnail('l', api=api) }}")
|
|
|
|
| {% elif node and node.picture %}
|
|
|
|
meta(property="og:image", content="{{ node.picture.thumbnail('l', api=api) }}")
|
|
|
|
meta(name="twitter:image", content="{{ node.picture.thumbnail('l', api=api) }}")
|
|
|
|
| {% elif project.picture_header %}
|
|
|
|
meta(property="og:image", content="{{ project.picture_header.thumbnail('l', api=api) }}")
|
|
|
|
meta(name="twitter:image", content="{{ project.picture_header.thumbnail('l', api=api) }}")
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
| {% if show_project %}
|
|
|
|
meta(property="og:title", content="{{ project.name }} - Blender Cloud")
|
|
|
|
meta(name="twitter:title", content="{{ project.name }} - Blender Cloud")
|
|
|
|
meta(property="og:description", content="{{ project.summary }}")
|
|
|
|
meta(name="twitter:description", content="{{ project.summary }}")
|
|
|
|
meta(property="og:url", content="{{ url_for('projects.view', project_url=project.url, _external=True) }}")
|
|
|
|
| {% else %}
|
|
|
|
|
|
|
|
| {% if node %}
|
|
|
|
meta(property="og:title", content="{{ node.name }} - Blender Cloud")
|
|
|
|
meta(name="twitter:title", content="{{ node.name }} on Blender Cloud")
|
|
|
|
|
|
|
|
| {% if node.node_type == 'post' %}
|
|
|
|
|
|
|
|
| {% if node.properties.content %}
|
|
|
|
meta(property="og:description", content="{{ node.properties.content | truncate(180) }}")
|
|
|
|
meta(name="twitter:description", content="{{ node.properties.content | truncate(180) }}")
|
|
|
|
| {% else %}
|
|
|
|
meta(property="og:description", content="Blender Cloud, your source for open content and training")
|
|
|
|
meta(name="twitter:description", content="Blender Cloud, your source for open content and training")
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
| {% else %}
|
|
|
|
|
|
|
|
| {% if node.description %}
|
|
|
|
meta(property="og:description", content="{{ node.description | truncate(180) }}")
|
|
|
|
meta(name="twitter:description", content="{{ node.description | truncate(180) }}")
|
|
|
|
| {% else %}
|
|
|
|
meta(property="og:description", content="Blender Cloud, your source for open content and training")
|
|
|
|
meta(name="twitter:description", content="Blender Cloud, your source for open content and training")
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
| {% endif %}
|
|
|
|
|
2018-09-05 15:11:46 +02:00
|
|
|
meta(property="og:url", content="{{url_for('projects.view_node', project_url=project.url, node_id=node._id, _external=True)}}")
|
2018-04-16 14:38:08 +02:00
|
|
|
| {% else %}
|
|
|
|
meta(property="og:title", content="{{ project.name }} Blog on Blender Cloud")
|
|
|
|
meta(name="twitter:title", content="{{ project.name }} Blog on Blender Cloud")
|
|
|
|
meta(property="og:description", content="{{ project.summary }}")
|
|
|
|
meta(name="twitter:description", content="{{ project.summary }}")
|
|
|
|
|
|
|
|
meta(property="og:url", content="{{url_for('projects.view', project_url=project.url, _external=True)}}")
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
| {% endif %}
|
|
|
|
| {% endblock og %}
|
|
|
|
|
|
|
|
| {% block page_overlay %}
|
|
|
|
#page-overlay.video
|
|
|
|
.video-embed
|
|
|
|
#others
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
| {% block head %}
|
|
|
|
|
|
|
|
script(src="{{ url_for('static_pillar', filename='assets/js/vendor/videojs-6.2.8.min.js') }}")
|
|
|
|
script(src="{{ url_for('static_pillar', filename='assets/js/vendor/videojs-ga-0.4.2.min.js') }}")
|
|
|
|
script(src="{{ url_for('static_pillar', filename='assets/js/vendor/videojs-hotkeys-0.2.20.min.js') }}")
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
| {% block css %}
|
|
|
|
link(href="{{ url_for('static_cloud', filename='assets/css/project-landing.css') }}", rel="stylesheet")
|
|
|
|
| {% endblock %}
|
|
|
|
|
|
|
|
| {% block body %}
|
|
|
|
header
|
|
|
|
//a(href="{{ url_for( 'projects.view', project_url=project.url) }}")
|
2018-05-07 15:25:10 +02:00
|
|
|
img.header(src="{{ project.picture_header.thumbnail('h', api=api) }}")
|
2018-04-16 14:38:08 +02:00
|
|
|
|
|
|
|
| {% block navbar_secondary %}
|
2018-04-16 16:24:00 +02:00
|
|
|
| {{ projectmacros.render_secondary_navigation(project, pages=pages) }}
|
|
|
|
|
2018-04-16 14:38:08 +02:00
|
|
|
| {% endblock navbar_secondary %}
|
2018-04-16 20:36:23 +02:00
|
|
|
#container.landing
|
2018-04-16 14:38:08 +02:00
|
|
|
section.node-details-container.project
|
|
|
|
.node-details-title
|
|
|
|
h1 {{ project.name }}
|
|
|
|
|
|
|
|
| {% if project.description %}
|
|
|
|
.node-details-description
|
|
|
|
| {{ project | markdowned('description') }}
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
section.gallery
|
|
|
|
h2 Gallery
|
|
|
|
| {% for n in activity_stream %}
|
2018-04-16 16:36:03 +02:00
|
|
|
| {% if n.node_type not in ['comment', 'post'] and n.picture %}
|
2018-04-16 14:38:08 +02:00
|
|
|
.thumbnail.expand-image-links
|
|
|
|
.img-container
|
|
|
|
a(href="{{ n.picture.thumbnail('l', api=api) }}", data-node_id="{{ n._id }}")
|
|
|
|
img(src="{{ n.picture.thumbnail('l', api=api) }}", alt="{{ n.name }}")
|
|
|
|
.img-caption.table
|
|
|
|
| {# Not using for the moment
|
|
|
|
span.table-cell {{ n.name }}
|
|
|
|
| #}
|
|
|
|
| {% endif %}
|
|
|
|
| {% endfor %}
|
|
|
|
div(class="clearfix")
|
2018-04-16 18:35:16 +02:00
|
|
|
| {% if project.nodes_featured %}
|
|
|
|
| {# In some cases featured_nodes might might be embedded #}
|
|
|
|
| {% if '_id' in project.nodes_featured[0] %}
|
|
|
|
| {% set featured_node_id=project.nodes_featured[0]._id %}
|
|
|
|
| {% else %}
|
|
|
|
| {% set featured_node_id=project.nodes_featured[0] %}
|
|
|
|
| {% endif %}
|
|
|
|
a.btn(href="{{ url_for('projects.view_node', project_url=project.url, node_id=featured_node_id) }}") See more
|
|
|
|
| {% endif %}
|
|
|
|
|
2018-04-16 14:38:08 +02:00
|
|
|
|
|
|
|
section.node-extra
|
|
|
|
h2 Latest Updates
|
|
|
|
|
|
|
|
| {% if activity_stream %}
|
|
|
|
.node-updates
|
|
|
|
ul.node-updates-list
|
|
|
|
| {% for n in activity_stream %}
|
|
|
|
| {% if n.node_type == 'post' %}
|
|
|
|
li.node-updates-list-item(
|
|
|
|
data-node_id="{{ n._id }}",
|
|
|
|
class="{{ n.node_type }} {{ n.properties.content_type | hide_none }}")
|
|
|
|
a.image(href="{{ url_for_node(node=n) }}")
|
|
|
|
| {% if n.picture %}
|
|
|
|
img(src="{{ n.picture.thumbnail('l', api=api) }}")
|
|
|
|
| {% endif %}
|
|
|
|
|
|
|
|
.info
|
|
|
|
a.title(href="{{ url_for_node(node=n) }}") {{ n.name }}
|
|
|
|
p.description(href="{{ url_for_node(node=n) }}")
|
|
|
|
| {% if n.node_type == 'post' %}
|
|
|
|
| {{ n.properties | markdowned('content') | striptags | truncate(140, end="... <small>read more</small>") | safe | hide_none }}
|
|
|
|
| {% else %}
|
|
|
|
| {{ n | markdowned('description') | striptags | truncate(140, end="... <small>read more</small>") | safe | hide_none }}
|
|
|
|
| {% endif %}
|
|
|
|
//span.details
|
|
|
|
// span.what {% if n.properties.content_type %}{{ n.properties.content_type | undertitle }}{% else %}{{ n.node_type | undertitle }}{% endif %} ·
|
|
|
|
// span.when {{ n._updated | pretty_date }} by
|
|
|
|
// span.who {{ n.user.full_name }}
|
|
|
|
| {% endif %}
|
|
|
|
| {% endfor %}
|
|
|
|
| {% endif %}
|
|
|
|
a.btn(href="{{ url_for('main.project_blog', project_url=project.url) }}") See all updates
|
|
|
|
|
|
|
|
| {% endblock body %}
|
|
|
|
|
|
|
|
|
|
|
|
| {% block footer_scripts %}
|
|
|
|
script.
|
|
|
|
// Click anywhere in the page to hide the overlay
|
|
|
|
function hideOverlay() {
|
|
|
|
$('#page-overlay.video').removeClass('active');
|
|
|
|
$('#page-overlay.video .video-embed').html('');
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).click(function () {
|
|
|
|
hideOverlay();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keyup(function (e) {
|
|
|
|
if (e.keyCode == 27) {
|
|
|
|
hideOverlay();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("a[data-node_id]").on( "click", function(e) {
|
|
|
|
// var nodeId = $(this).data('node_id');
|
|
|
|
// displayNode(nodeId);
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
$('#page-overlay').addClass('active');
|
|
|
|
var url = $(this).attr('href');
|
|
|
|
$('#page-overlay').html('<img src="' + url + '"/>')
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-04-16 16:24:00 +02:00
|
|
|
| {% endblock %}
|