79d8c1db38
* 增加remark42的评论系统支持,config中增加对应配置。 * remark42评论系统,语言配置加入到config中,修正切换theme时评论区跟随主题切换。 * - 新增腾讯视频的支持 - 支持通过frontmatter配置在文章中插入音频 * 更新readme * Delete README.md * Create README.md * Remove MetingJS * fix(shortcode/tencent): switch to HTML5 The old one was showing video using Flash. * style(comments): clean remark42 integration code Co-authored-by: wood <wood@hfge.cn> Co-authored-by: Wood <34589275+hfge@users.noreply.github.com>
10 lines
403 B
HTML
10 lines
403 B
HTML
{{ $vid := .Get 0 }}
|
|
<div style="position: relative; width: 100%; height: 0; padding-bottom: 56.25%;">
|
|
<iframe src="http://v.qq.com/txp/iframe/player.html?vid={{ $vid }}&auto=0"
|
|
scrolling="no"
|
|
frameborder="no"
|
|
framespacing="0"
|
|
allowfullscreen="true"
|
|
style="position: absolute; width: 100%; height: 100%;">
|
|
</iframe>
|
|
</div> |