Get the latest Blender, older versions, or experimental builds.
Stay up-to-date with the new features in the latest Blender releases.
Access production assets and knowledge from the open movies.
Documentation on the usage and features in Blender.
Latest development updates, by Blender developers.
Guidelines, release notes and development docs.
A platform to collect and share results of the Blender Benchmark.
The yearly event that brings the community together.
Support core development with a monthly contribution.
Perform a single donation with more payment options available.
{% extends "layout.html" %}
{% import 'grid_macros.html' as grid with context %}
{% block content %}
<h1>Grid View</h1>
<table class="Grid table table-striped table-hover box" border="0" cellspacing="0">
<tr>
<td class="title"><a href="{{ title_url }}">{{ title }}</a>
{{ grid.tag_title() }}
</td>
{% for s in stamps %}
{{ grid.stamp_td(s) }}
{% endfor %}
</tr>
{% for builder in builders %}
{{ grid.builder_td(builder) }}
{% for build in builder.builds %}
{{ grid.build_td(build) }}
</table>
{% endblock %}