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 %} {% endwith %}
{% endblock %} {% endblock %}
{% block data_theme %}{% endblock %}
{% block content %} {% block content %}
{# TODO: check and decide data theme colour light alternative #} <div class="container pt-4">
<div style="background-image: url('{% static 'common/images/asset-bg-noise-2x-opacity-20.png' %}')"> {% 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="justify-content-center mb-3 row">
<div class="col-auto text-center"> <div class="col-auto text-center">
{% include "common/components/navigation/pagination.html" %} {% include "common/components/navigation/pagination.html" %}
</div>
</div> </div>
<div class="card-layout-card-transparent cards"> </div>
{% for post in posts %} <div class="card-layout-card-transparent cards">
{% if post.is_published or user.is_superuser or user.is_staff %} {% for post in posts %}
{% include 'common/components/cards/card_blog.html' %} {% if post.is_published or user.is_superuser or user.is_staff %}
{% endif %} {% include 'common/components/cards/card_blog.html' %}
{% endfor %} {% endif %}
</div> {% endfor %}
<div class="justify-content-center mb-4 row"> </div>
<div class="col-auto text-center"> <div class="justify-content-center mb-4 row">
{% include "common/components/navigation/pagination.html" %} <div class="col-auto text-center">
</div> {% include "common/components/navigation/pagination.html" %}
</div> </div>
</div> </div>
</div> </div>