infobox.html 1.0 KB

12345678910111213141516171819202122232425262728
  1. <div class="panel panel-default infobox">
  2. <div class="panel-heading">
  3. <h4 class="panel-title">{{ infobox.infobox }}</h4>
  4. </div>
  5. <div class="panel-body">
  6. {% if infobox.img_src %}<img class="img-responsive center-block infobox_part" src="{{ image_proxify(infobox.img_src) }}" alt="{{ infobox.infobox }}" />{% endif %}
  7. {% if infobox.content %}<p class="infobox_part">{{ infobox.content }}</p>{% endif %}
  8. {% if infobox.attributes %}
  9. <table class="table table-striped infobox_part">
  10. {% for attribute in infobox.attributes %}
  11. <tr>
  12. <td>{{ attribute.label }}</td>
  13. <td>{{ attribute.value }}</td>
  14. </tr>
  15. {% endfor %}
  16. </table>
  17. {% endif %}
  18. {% if infobox.urls %}
  19. <div class="infobox_part">
  20. {% for url in infobox.urls %}
  21. <p class="btn btn-default btn-xs"><a href="{{ url.url }}" rel="noreferrer">{{ url.title }}</a></p>
  22. {% endfor %}
  23. </div>
  24. {% endif %}
  25. </div>
  26. </div>