download.hbs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en" class="h-full">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
  7. <title>Download NBook</title>
  8. <script src="https://cdn.tailwindcss.com"></script>
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
  10. </head>
  11. <body class="bg-black h-full flex flex-col items-center justify-center bg-[url('https://nbooks.oss-ap-southeast-5.aliyuncs.com/image/20230518/42aocrnq.jpg')] bg-cover">
  12. <div class="text-3xl text-fuchsia-500 drop-shadow">NBook</div>
  13. <a
  14. id="download"
  15. class="mt-4 mx-auto w-10/12 h-10 flex items-center justify-center text-fuchsia-500 border border-fuchsia-500 rounded bg-fuchsia-500/10 active:bg-fuchsia-500/20 transition-colors drop-shadow"
  16. >
  17. <svg
  18. class="w-7 text-fuchsia-500 mr-2"
  19. xmlns="http://www.w3.org/2000/svg"
  20. xmlns:xlink="http://www.w3.org/1999/xlink"
  21. viewBox="0 0 24 24"
  22. >
  23. <path
  24. d="M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85a.637.637 0 0 0-.83.22l-1.88 3.24a11.463 11.463 0 0 0-8.94 0L5.65 5.67a.643.643 0 0 0-.87-.2c-.28.18-.37.54-.22.83L6.4 9.48A10.78 10.78 0 0 0 1 18h22a10.78 10.78 0 0 0-5.4-8.52zM7 15.25a1.25 1.25 0 1 1 0-2.5a1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5a1.25 1.25 0 0 1 0 2.5z"
  25. fill="currentColor"
  26. ></path>
  27. </svg>
  28. Download
  29. </a>
  30. </body>
  31. <script>
  32. $.get("/api/sys-config/app", function (data) {
  33. console.log(data);
  34. $("#download").attr("href", data.value.appInfo.url);
  35. });
  36. </script>
  37. </html>