You are here

social-content-block.html.twig in Open Social 8.7

Custom theme implementation to display a custom content block.

File

modules/social_features/social_content_block/templates/social-content-block.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Custom theme implementation to display a custom content block.
  5. */
  6. #}
  7. <h4 class="card__title">
  8. {{ title }}
  9. <div class="card__subtitle">
  10. {{ subtitle }}
  11. </div>
  12. </h4>
  13. {{ topics }}
  14. {% if link %}
  15. <footer class="card__actionbar">
  16. {{ link }}
  17. </footer>
  18. {% endif %}