[TWIG] Replaced unused markup classes

This commit is contained in:
Eliseu Amaro 2021-12-25 17:59:49 +00:00
parent 3275a989db
commit 0d5e545a6e
Signed by: eliseuamaro
GPG Key ID: 96DA09D4B97BC2D5
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{% extends 'base.html.twig' %}
{% block body %}
<div class="section-widget section-widget-padded">
<div class="section-widget section-padding">
<h3>{{ 'Put the languages in the order you\'d like to see them in your language selection dropdown, when posting' | trans}}</h3>
{{ form(form) }}
</div>

View File

@ -26,7 +26,7 @@
{% endblock current_note %}
{% endfor %}
<div class="section-widget section-widget-padded section-widget-paging">
<div class="section-widget section-padding section-widget-paging">
{{ "Page " ~ page }}
</div>
{% endblock %}

View File

@ -3,13 +3,14 @@
{% block title %}Actors{% endblock %}
{% block body %}
<section class="section-widget section-widget-padded">
<section class="section-widget section-padding">
<h2 class="section-title">{{ "Actors" | trans }}</h2>
<div class="section-widget-padded">
<div class="section-padding">
{% if actors is defined and actors is not empty %}
{% for actor in actors %}
{% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
<hr>
{% endfor %}
{% else %}
<h1>{% trans %}No actors here.{% endtrans %}</h1>