diff options
-rw-r--r-- | templates/page.tmpl | 9 | ||||
-rw-r--r-- | templates/vid.md | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index d5ec57bf..6df947c6 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -295,6 +295,15 @@ Last edited <TMPL_VAR MTIME> // @license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt txt CC0-1.0 // Copyright (C) 2021 Sacha Chua if (document.querySelector('.times')) { document.querySelector('.times').prepend('Your local time: ~ ' + (new Date(document.querySelector('.times').getAttribute('start')).toLocaleString()) + ' to ~ ' + (new Date(document.querySelector('.times').getAttribute('end')).toLocaleString()) + "\n"); } + if (document.querySelector('a[name=transcript]')) { + var transcriptLink = document.createElement('a'); + transcriptLink.setAttribute('href', '#transcript'); + transcriptLink.textContent = 'View transcript'; + var resources = document.querySelector('video[id="mainVideo"]').closest('.vid').querySelector('.resources'); + var transcriptDiv = document.createElement('div'); +transcriptDiv.appendChild(transcriptLink) + if (resources) { resources.prepend(transcriptDiv); } + } // @license-end </script> </body> diff --git a/templates/vid.md b/templates/vid.md index 6e6850b1..b50349c4 100644 --- a/templates/vid.md +++ b/templates/vid.md @@ -7,7 +7,7 @@ <p><em>Your browser does not support the video tag, please download the video instead.</em></p> </video> <div class="resources"> - <a href="<TMPL_VAR src>"><TMPL_IF download><TMPL_VAR download><TMPL_ELSE>Download video</TMPL_IF><TMPL_IF duration>, <TMPL_VAR duration></TMPL_IF><TMPL_IF size>, <TMPL_VAR size></TMPL_IF></a> - <TMPL_IF subtitles><a href="<TMPL_VAR subtitles>">Download captions</a> </TMPL_IF> + <a href="<TMPL_VAR src>"><TMPL_IF download><TMPL_VAR download><TMPL_ELSE>Download video</TMPL_IF><TMPL_IF duration>, <TMPL_VAR duration></TMPL_IF><TMPL_IF size>, <TMPL_VAR size></TMPL_IF></a><br /> + <TMPL_IF subtitles><a href="<TMPL_VAR subtitles>">Download captions</a><br /></TMPL_IF> </div> </div> |