Blender Studio pull request - Version 2.2.0 update #104394

Merged
Márton Lente merged 64 commits from ui/v2.2.0 into main 2024-04-08 16:32:44 +02:00
Showing only changes of commit 06552c7220 - Show all commits

View File

@ -12,30 +12,25 @@
{% endwith %}
{% endblock %}
{% block data_theme %}{% endblock %}
{% block content %}
{# TODO: check and decide data theme colour light alternative #}
<div style="background-image: url('{% static 'common/images/asset-bg-noise-2x-opacity-20.png' %}')">
<div class="container pt-4">
{% include "common/components/simple_header.html" with title="Blog" subtitle="Follow the latest updates from the Blender Studio." %}
<div class="container pt-4">
{% include "common/components/simple_header.html" with title="Blog" subtitle="Follow the latest updates from the Blender Studio." %}
<div class="justify-content-center mb-3 row">
<div class="col-auto text-center">
{% include "common/components/navigation/pagination.html" %}
</div>
<div class="justify-content-center mb-3 row">
<div class="col-auto text-center">
{% include "common/components/navigation/pagination.html" %}
</div>
<div class="card-layout-card-transparent cards">
{% for post in posts %}
{% if post.is_published or user.is_superuser or user.is_staff %}
{% include 'common/components/cards/card_blog.html' %}
{% endif %}
{% endfor %}
</div>
<div class="justify-content-center mb-4 row">
<div class="col-auto text-center">
{% include "common/components/navigation/pagination.html" %}
</div>
</div>
<div class="card-layout-card-transparent cards">
{% for post in posts %}
{% if post.is_published or user.is_superuser or user.is_staff %}
{% include 'common/components/cards/card_blog.html' %}
{% endif %}
{% endfor %}
</div>
<div class="justify-content-center mb-4 row">
<div class="col-auto text-center">
{% include "common/components/navigation/pagination.html" %}
</div>
</div>
</div>