You are here

paragraph--block--default.html.twig in Open Social 8.7

Default theme implementation to display a paragraph.

Available variables:

  • paragraph: Full paragraph entity. Only method names starting with "get", "has", or "is" and a few common methods such as "id", "label", and "bundle" are available. For example:

    • paragraph.getCreatedTime() will return the paragraph creation timestamp.
    • paragraph.id(): The paragraph ID.
    • paragraph.bundle(): The type of the paragraph, for example, "image" or "text".
    • paragraph.getOwnerId(): The user ID of the paragraph author.

    See Drupal\paragraphs\Entity\Paragraph for a full list of public properties and methods for the paragraph object.

  • content: All paragraph items. Use {{ content }} to print them all, or print a subset such as {{ content.field_example }}. Use {{ content|without('field_example') }} to temporarily suppress the printing of a given child element.
  • attributes: HTML attributes for the containing element. The attributes.class element may contain one or more of the following classes:

    • paragraphs: The current template type (also known as a "theming hook").
    • paragraphs--type-[type]: The current paragraphs type. For example, if the paragraph is an "Image" it would result in "paragraphs--type--image". Note that the machine name will often be in a short form of the human readable label.
    • paragraphs--view-mode--[view_mode]: The View Mode of the paragraph; for example, a preview would result in: "paragraphs--view-mode--preview", and default: "paragraphs--view-mode--default".
  • view_mode: View mode; for example, "preview" or "full".
  • logged_in: Flag for authenticated user status. Will be true when the current user is a logged-in member.
  • is_admin: Flag for admin user status. Will be true when the current user is an administrator.

File

modules/social_features/social_landing_page/templates/paragraph--block--default.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a paragraph.
  5. *
  6. * Available variables:
  7. * - paragraph: Full paragraph entity.
  8. * Only method names starting with "get", "has", or "is" and a few common
  9. * methods such as "id", "label", and "bundle" are available. For example:
  10. * - paragraph.getCreatedTime() will return the paragraph creation timestamp.
  11. * - paragraph.id(): The paragraph ID.
  12. * - paragraph.bundle(): The type of the paragraph, for example, "image" or "text".
  13. * - paragraph.getOwnerId(): The user ID of the paragraph author.
  14. * See Drupal\paragraphs\Entity\Paragraph for a full list of public properties
  15. * and methods for the paragraph object.
  16. * - content: All paragraph items. Use {{ content }} to print them all,
  17. * or print a subset such as {{ content.field_example }}. Use
  18. * {{ content|without('field_example') }} to temporarily suppress the printing
  19. * of a given child element.
  20. * - attributes: HTML attributes for the containing element.
  21. * The attributes.class element may contain one or more of the following
  22. * classes:
  23. * - paragraphs: The current template type (also known as a "theming hook").
  24. * - paragraphs--type-[type]: The current paragraphs type. For example, if the paragraph is an
  25. * "Image" it would result in "paragraphs--type--image". Note that the machine
  26. * name will often be in a short form of the human readable label.
  27. * - paragraphs--view-mode--[view_mode]: The View Mode of the paragraph; for example, a
  28. * preview would result in: "paragraphs--view-mode--preview", and
  29. * default: "paragraphs--view-mode--default".
  30. * - view_mode: View mode; for example, "preview" or "full".
  31. * - logged_in: Flag for authenticated user status. Will be true when the
  32. * current user is a logged-in member.
  33. * - is_admin: Flag for admin user status. Will be true when the current user
  34. * is an administrator.
  35. *
  36. * @see template_preprocess_paragraph()
  37. *
  38. * @ingroup themeable
  39. */
  40. #}
  41. {{ attach_library('social_landing_page/section.block')}}
  42. {%
  43. set classes = [
  44. 'paragraph',
  45. 'paragraph--' ~ paragraph.bundle|clean_class,
  46. ]
  47. %}
  48. {% block paragraph %}
  49. <div {{ attributes.addClass(classes) }}>
  50. <div class="container{% if (content.field_block_reference_secondary|render is not empty) %} row{% endif %}">
  51. {% if (content.field_block_title|render is not empty) %}
  52. <h2 class="title">{{ content.field_block_title|render|striptags|trim }}</h2>
  53. {% endif %}
  54. {% block content %}
  55. {% if (content.field_block_reference_secondary|render is not empty) %}
  56. <div class="primary-col">{{ content.field_block_reference }}</div>
  57. <div class="secondary-col">{{ content.field_block_reference_secondary }}</div>
  58. {% else %}
  59. <div class="primary-col">{{ content.field_block_reference }}</div>
  60. {% endif %}
  61. {% endblock %}
  62. </div>
  63. {% if (content.field_block_link|render is not empty) %}
  64. <div class="container row">
  65. <footer class="primary-col card__actionbar">
  66. <div class="card__link">
  67. {{ content.field_block_link }}
  68. </div>
  69. </footer>
  70. </div>
  71. {% endif %}
  72. </div>
  73. {% endblock paragraph %}