1
0

index.html.j2 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #!ipxe
  2. #### {{ boot_domain }} initial loader ####
  3. #### see https://netboot.xyz for more information ####
  4. {% if bootloader_https_enabled | bool %}
  5. set conn_type https
  6. chain --autofree https://{{ boot_domain }}/menu.ipxe || echo HTTPS failed... attempting HTTP...
  7. {% endif %}
  8. {% if bootloader_http_enabled | bool %}
  9. set conn_type http
  10. chain --autofree http://{{ boot_domain }}/menu.ipxe || echo HTTP failed, localbooting...
  11. {% endif %}
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <title>{{ site_name }} BootLoaders - Powered by netboot.xyz</title>
  16. </head>
  17. <style>
  18. table, th, td {
  19. padding: 5px;
  20. border: 1px solid black;
  21. }
  22. </style>
  23. <body>
  24. <div style="font-family: monospace, fixed; font-weight: bold;">
  25. <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 />
  26. <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 />
  27. <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 />
  28. <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 />
  29. <span style="">|_|&#160;|_|\___|\__|_.__/&#160;\___/&#160;\___/&#160;\__(_)_/\_\\__,&#160;/___|</span><br />
  30. <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 />
  31. <p>
  32. Version: {{ boot_version }}<br>
  33. Powered by <a href=https://netboot.xyz>netboot.xyz</a>
  34. </p>
  35. <p>Legacy (PCBIOS) iPXE Bootloaders</p>
  36. <table style="width:100%">
  37. <!-- table header -->
  38. <tr>
  39. <th> Type </th>
  40. <th> Bootloader </th>
  41. <th> Description </th>
  42. </tr>
  43. <!-- table rows -->
  44. {% for item in bootloaders.legacy %}
  45. <tr>
  46. <td> {{ item.type }} </td>
  47. <td> <a href="ipxe/{{ site_name }}{{ item.output_bin }}">{{ site_name }}{{ item.output_bin }}</a> </td>
  48. <td> {{ item.desc }} </td>
  49. </tr>
  50. {% endfor %}
  51. </table>
  52. <p>UEFI iPXE Bootloaders</p>
  53. <table style="width:100%">
  54. <!-- table header -->
  55. <tr>
  56. <th> Type </th>
  57. <th> Bootloader </th>
  58. <th> Description </th>
  59. </tr>
  60. <!-- table rows -->
  61. {% for item in bootloaders.uefi %}
  62. <tr>
  63. <td> {{ item.type }} </td>
  64. <td> <a href="ipxe/{{ site_name }}{{ item.output_bin }}">{{ site_name }}{{ item.output_bin }}</a> </td>
  65. <td> {{ item.desc }} </td>
  66. </tr>
  67. {% endfor %}
  68. </table>
  69. </div>
  70. </body>
  71. </html>