Embedding vimeo content on through Kirby

I saw this post of yours. I’m trying to use this solution instead.

How could I use this to embed an iframe like this:

<iframe src="https://player.vimeo.com/video/176585406?autoplay=1&loop=1&title=0&byline=0&portrait=0" width="1000" height="563" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> 

which has the autoplay inherent in the code.

In the blueprint i’ve put the code:

vimeolinks:
label: Vimeo Links
type: structure
entry: >
  {{vimeovid}}<br />
fields:
  vimeovid:
    label: Vimeo
    type: text

and the following php:

 <?php foreach($project->vimeolinks()->yaml() as $vimeovid): ?>
     <?php echo vimeo($vimeovid['vimeoid']) ?>
  <?php endforeach ?>

Is there anyway of this working?

Thanks again for the help