open-orchestra/open-orchestra-display-bundle

View on GitHub
DisplayBundle/Resources/views/Block/Content/show.html.twig

Summary

Maintainability
Test Coverage
{% extends 'OpenOrchestraDisplayBundle:Block:layout.html.twig' %}

{% block content %}
    <h1>{{ content.name }}</h1>
    {% for attribute in content.attributes %}
        <div class="{{ attribute.name }}"> {{ attribute.stringValue }}</div>
    {% endfor %}
{% endblock %}