Actualización

This commit is contained in:
Xes
2025-04-10 12:49:05 +02:00
parent 4aff98e77b
commit 1cdd00920f
9151 changed files with 1800913 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<h4>{{ 'ContextForCommentToBeGrade'|get_lang }}</h4>
<strong>{{ 'PortfolioItemTitleXName'|get_lang|format(item.title) }}</strong>
<p>{{ item.excerpt }}</p>
<div class="row">
{% for node in comments_path %}
{% if loop.index != comments_path|length %}
<div class="col-sm-{{ 12 - node.lvl }} col-sm-offset-{{ node.lvl }}">
<strong>{{ 'PortfolioCommentFromXUser'|get_lang|format(node.author.completeName) }}</strong>
{{ node.content }}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>