123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #!ipxe
- #### {{ boot_domain }} initial loader ####
- #### see https://netboot.xyz for more information ####
- {% if bootloader_https_enabled | bool %}
- set conn_type https
- chain --autofree https://{{ boot_domain }}/menu.ipxe || echo HTTPS failed... attempting HTTP...
- {% endif %}
- {% if bootloader_http_enabled | bool %}
- set conn_type http
- chain --autofree http://{{ boot_domain }}/menu.ipxe || echo HTTP failed, localbooting...
- {% endif %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>{{ site_name }} BootLoaders - Powered by netboot.xyz</title>
- </head>
- <style>
- table, th, td {
- padding: 5px;
- border: 1px solid black;
- }
- </style>
- <body>
- <div style="font-family: monospace, fixed; font-weight: bold;">
- <span style="">            _   _                 _                    </span><br />
- <span style=""> _ __   ___| |_| |__   ___   ___ | |_  __  ___   _ ____</span><br />
- <span style="">| '_ \ / _ \ __| '_ \ / _ \ / _ \| __| \ \/ / | | |_  /</span><br />
- <span style="">| | | |  __/ |_| |_) | (_) | (_) | |_ _ >  <| |_| |/ / </span><br />
- <span style="">|_| |_|\___|\__|_.__/ \___/ \___/ \__(_)_/\_\\__, /___|</span><br />
- <span style="">                                             |___/     </span><br />
- <p>
- Version: {{ boot_version }}<br>
- Powered by <a href=https://netboot.xyz>netboot.xyz</a>
- </p>
- <p>Legacy (PCBIOS) iPXE Bootloaders</p>
- <table style="width:100%">
- <!-- table header -->
- <tr>
- <th> Type </th>
- <th> Bootloader </th>
- <th> Description </th>
- </tr>
- <!-- table rows -->
- {% for bootloader_name in bootloader_disks %}
- {% for item in bootloaders.legacy %}
- <tr>
- <td> {{ item.type }} </td>
- <td> <a href="ipxe/{{ bootloader_name }}{{ item.output_bin }}">{{ bootloader_name }}{{ item.output_bin }}</a> </td>
- <td> {{ item.desc }} </td>
- </tr>
- {% endfor %}
- {% endfor %}
- </table>
- <p>UEFI iPXE Bootloaders</p>
- <table style="width:100%">
- <!-- table header -->
- <tr>
- <th> Type </th>
- <th> Bootloader </th>
- <th> Description </th>
- </tr>
- <!-- table rows -->
- {% for bootloader_name in bootloader_disks %}
- {% for item in bootloaders.uefi %}
- <tr>
- <td> {{ item.type }} </td>
- <td> <a href="ipxe/{{ bootloader_name }}{{ item.output_bin }}">{{ bootloader_name }}{{ item.output_bin }}</a> </td>
- <td> {{ item.desc }} </td>
- </tr>
- {% endfor %}
- {% endfor %}
- </table>
- </div>
- </body>
- </html>
|