8 lines
492 B
HTML
8 lines
492 B
HTML
|
<div class="bilibili">
|
||
|
{{- 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>
|