viewpdf.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. Copyright (C) 2023 Nicola Murino
  3. This WebUI uses the KeenThemes Mega Bundle, a proprietary theme:
  4. https://keenthemes.com/products/templates-mega-bundle
  5. KeenThemes HTML/CSS/JS components are allowed for use only within the
  6. SFTPGo product and restricted to be used in a resealable HTML template
  7. that can compete with KeenThemes products anyhow.
  8. This WebUI is allowed for use only within the SFTPGo product and
  9. therefore cannot be used in derivative works/products without an
  10. explicit grant from the SFTPGo Team ([email protected]).
  11. -->
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="UTF-8" />
  16. <meta name="viewport" content="width=device-width, initial-scale=1" />
  17. <title>{{.Title}}</title>
  18. {{range .Branding.ExtraCSS}}
  19. <link href="{{$.StaticURL}}{{.}}" rel="stylesheet" type="text/css">
  20. {{end}}
  21. </head>
  22. <body>
  23. <script {{- if .CSPNonce}} nonce="{{.CSPNonce}}"{{- end}} src="{{.StaticURL}}/vendor/pdfobject/pdfobject.min.js"></script>
  24. <script type="text/javascript" {{- if .CSPNonce}} nonce="{{.CSPNonce}}"{{- end}}>
  25. PDFObject.embed("{{.URL}}", document.body);
  26. </script>
  27. </body>
  28. </html>