7 lines
477 B
HTML
7 lines
477 B
HTML
<div class="bilibili-video">
|
|
{{ if .IsNamedParams }}
|
|
<iframe src="//player.bilibili.com/player.html?bvid={{ .Get `id` }}&page={{ .Get `p` | default 1 }}" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>
|
|
{{ else }}
|
|
<iframe src="//player.bilibili.com/player.html?bvid={{ .Get 0 }}&page={{ .Get 1 | default 1 }}" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe>
|
|
{{ end }}
|
|
</div> |