index.html.j2 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>{{ site_name }} BootLoaders - Powered by netboot.xyz</title>
  5. </head>
  6. <style>
  7. table, th, td {
  8. padding: 5px;
  9. border: 1px solid black;
  10. }
  11. </style>
  12. <body>
  13. <div style="font-family: monospace, fixed; font-weight: bold;">
  14. <span style="">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;_&#160;&#160;&#160;_&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;_&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><br />
  15. <span style="">&#160;_&#160;__&#160;&#160;&#160;___|&#160;|_|&#160;|__&#160;&#160;&#160;___&#160;&#160;&#160;___&#160;|&#160;|_&#160;&#160;__&#160;&#160;___&#160;&#160;&#160;_&#160;____</span><br />
  16. <span style="">|&#160;&#39;_&#160;\&#160;/&#160;_&#160;\&#160;__|&#160;&#39;_&#160;\&#160;/&#160;_&#160;\&#160;/&#160;_&#160;\|&#160;__|&#160;\&#160;\/&#160;/&#160;|&#160;|&#160;|_&#160;&#160;/</span><br />
  17. <span style="">|&#160;|&#160;|&#160;|&#160;&#160;__/&#160;|_|&#160;|_)&#160;|&#160;(_)&#160;|&#160;(_)&#160;|&#160;|_&#160;_&#160;&gt;&#160;&#160;&lt;|&#160;|_|&#160;|/&#160;/&#160;</span><br />
  18. <span style="">|_|&#160;|_|\___|\__|_.__/&#160;\___/&#160;\___/&#160;\__(_)_/\_\\__,&#160;/___|</span><br />
  19. <span style="">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;|___/&#160;&#160;&#160;&#160;&#160;</span><br />
  20. <p>
  21. Version: {{ boot_version }}<br>
  22. Powered by <a href=https://netboot.xyz>netboot.xyz</a>
  23. </p>
  24. <p>Legacy (PCBIOS) iPXE Bootloaders</p>
  25. <table style="width:100%">
  26. <!-- table header -->
  27. <tr>
  28. <th> Type </th>
  29. <th> Bootloader </th>
  30. <th> Description </th>
  31. </tr>
  32. <!-- table rows -->
  33. {% for bootloader_name in bootloader_disks %}
  34. {% for item in bootloaders.legacy %}
  35. <tr>
  36. <td> {{ item.type }} </td>
  37. <td> <a href="ipxe/{{ bootloader_name }}{{ item.output_bin }}">{{ bootloader_name }}{{ item.output_bin }}</a> </td>
  38. <td> {{ item.desc }} </td>
  39. </tr>
  40. {% endfor %}
  41. {% endfor %}
  42. </table>
  43. <p>UEFI iPXE Bootloaders</p>
  44. <table style="width:100%">
  45. <!-- table header -->
  46. <tr>
  47. <th> Type </th>
  48. <th> Bootloader </th>
  49. <th> Description </th>
  50. </tr>
  51. <!-- table rows -->
  52. {% for bootloader_name in bootloader_disks %}
  53. {% for item in bootloaders.uefi %}
  54. <tr>
  55. <td> {{ item.type }} </td>
  56. <td> <a href="ipxe/{{ bootloader_name }}{{ item.output_bin }}">{{ bootloader_name }}{{ item.output_bin }}</a> </td>
  57. <td> {{ item.desc }} </td>
  58. </tr>
  59. {% endfor %}
  60. {% endfor %}
  61. </table>
  62. </div>
  63. </body>
  64. </html>