added print tool to cards

This commit is contained in:
2021-01-25 22:19:21 +01:00
parent 1ca9937fd4
commit 72667f075a
34 changed files with 1943 additions and 139 deletions

View File

@@ -0,0 +1,26 @@
{#
/**
* @file
* Default theme implementation for printer friendly version of entities.
*
* Available variables:
* - footer_links: Contains all the links present in the page.
* - source_url: Contains the source url of page.
*
* @see template_preprocess_printable_footer()
*
* @ingroup themeable
*/
#}
<hr/>
<strong>Source URL:</strong> <i>{{ source_url }}</i>
{% if footer_links %}
<br/>
<br/>
<strong> List of links present in page </strong>
<ul>
{% for link in footer_links %}
<li>{{ link }}</li>
{% endfor %}
</ul>
{% endif %}