I use Kirby as my CMS and i am trying to use a Variable to insert a Link at a icon. But it doesn't work. I tried out 2 ways. First this:
<a href='<?= $page->team01_member_fb()->html() ?>' target="_blank"><img src="assets/images/facebook_ico.svg"></a>
Than this one:
<?php echo '<a href=" '.$page->team01_member_Test()->html().' ">Link text</a>'; ?>