Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bilibili.html « shortcodes « layouts - github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17ebdda9206ed08d1b27b0949467e4682966dcb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="video_wrapper" style="position: relative; padding-bottom: 75%;">
  {{- $bvid := "" -}}
  {{if .Get "id"}}
    {{$bvid = .Get "id"}}
  {{else if .Get 0}}
    {{$bvid = .Get 0}}
    {{end}}
  {{if $bvid}}
    <iframe
      style="position: absolute; top: 0; left: 0;"
      width="100%"
      height="100%"
      src="//player.bilibili.com/player.html?aid=123456&bvid={{ $bvid }}&cid=123456&page=1"
      scrolling="no"
      border="0"
      frameborder="no"
      framespacing="0"
      allowfullscreen="true"
    >
    </iframe>
  {{else}}
    <h6>请填写视频 url 中的视频 id,例如:BV1FV411d7u7</h6>
  {{end}}
</div>