viewpdf.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. Copyright (C) 2019-2023 Nicola Murino
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as published
  5. by the Free Software Foundation, version 3.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Affero General Public License for more details.
  10. You should have received a copy of the GNU Affero General Public License
  11. along with this program. If not, see <https://www.gnu.org/licenses/>.
  12. -->
  13. <!DOCTYPE html>
  14. <html lang="en">
  15. <head>
  16. <meta charset="UTF-8" />
  17. <meta name="viewport" content="width=device-width, initial-scale=1" />
  18. <title>{{.Title}}</title>
  19. {{range .Branding.ExtraCSS}}
  20. <link href="{{$.StaticURL}}{{.}}" rel="stylesheet" type="text/css">
  21. {{end}}
  22. </head>
  23. <body>
  24. <script src="{{.StaticURL}}/vendor/pdfobject/pdfobject.min.js"></script>
  25. <script type="text/javascript">
  26. PDFObject.embed("{{.URL}}", document.body);
  27. </script>
  28. </body>
  29. </html>