21 lines
738 B
Twig
21 lines
738 B
Twig
<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>
|