|
@@ -1,8 +1,14 @@
|
|
<!DOCTYPE html>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<html lang="en">
|
|
<head>
|
|
<head>
|
|
- <title>{{ site_name }} BootLoaders</title>
|
|
|
|
|
|
+ <title>{{ site_name }} BootLoaders - Powered by netboot.xyz</title>
|
|
</head>
|
|
</head>
|
|
|
|
+ <style>
|
|
|
|
+ table, th, td {
|
|
|
|
+ padding: 5px;
|
|
|
|
+ border: 1px solid black;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
<body>
|
|
<body>
|
|
<div style="font-family: monospace, fixed; font-weight: bold;">
|
|
<div style="font-family: monospace, fixed; font-weight: bold;">
|
|
<span style="">            _   _                 _                    </span><br />
|
|
<span style="">            _   _                 _                    </span><br />
|
|
@@ -11,9 +17,50 @@
|
|
<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>
|
|
</div>
|
|
- {% for item in netboot_disks.stdout_lines %}
|
|
|
|
- <a href="ipxe/{{ item }}">{{ item }}</a><br>
|
|
|
|
- {% endfor %}
|
|
|
|
</body>
|
|
</body>
|
|
-</html>
|
|
|
|
|
|
+</html>
|