printable-footer.html.twig 561 B

1234567891011121314151617181920212223242526
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for printer friendly version of entities.
  5. *
  6. * Available variables:
  7. * - footer_links: Contains all the links present in the page.
  8. * - source_url: Contains the source url of page.
  9. *
  10. * @see template_preprocess_printable_footer()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <hr/>
  16. <strong>Source URL:</strong> <i>{{ source_url }}</i>
  17. {% if footer_links %}
  18. <br/>
  19. <br/>
  20. <strong> List of links present in page </strong>
  21. <ul>
  22. {% for link in footer_links %}
  23. <li>{{ link }}</li>
  24. {% endfor %}
  25. </ul>
  26. {% endif %}