首页 > 解决方案 > Grav 标记如何在 frontmatter 中嵌入 youtube 视频?

问题描述

我计划使用frontmatter将youtube视频嵌入到grav网站中(该页面当前仅使用frontmatter,标记文件中没有条目):

rows:
    -
        title: XYZ
        description: 'Something'
        description_position: left
        image: image.JPG
        name: video
    -
        title: IJK
        description: 'Something'
        description_position: right
        html: '<iframe width="560" height="315" src="https://www.youtube.com/embed/somevideo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>'

这不起作用。Grav 并没有说这不是有效的 frontmatter,但它也没有创建 iframe。有没有办法使用 html inline 在frontmatter中嵌入来自youtube的视频并且没有插件?

标签: youtubeembedgravyaml-front-matter

解决方案


您可以使用下面的代码

 <//iframe style="position:center;bottom:0px;left:0px;height:100%;width:100%" src="https://www.youtube.com/embed/-5wpm-gesOY" frameborder="0" allowfullscreen></iframe>

(// 不使用)

好作品


推荐阅读