about.ipxe.j2 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!ipxe
  2. set esc:hex 1b
  3. set bold ${esc:string}[1m
  4. set ital ${esc:string}[3m
  5. set under ${esc:string}[4m
  6. set boldoff ${esc:string}[22m
  7. set italoff ${esc:string}[23m
  8. set underoff ${esc:string}[24m
  9. set fs_bla ${esc:string}[30m
  10. set fg_red ${esc:string}[31m
  11. set fg_gre ${esc:string}[32m
  12. set fg_yel ${esc:string}[33m
  13. set fg_blu ${esc:string}[34m
  14. set fg_mag ${esc:string}[35m
  15. set fg_cya ${esc:string}[36m
  16. set fg_whi ${esc:string}[37m
  17. :netabout
  18. menu ${fg_cya}${bold}About netboot.xyz (Version: ${version})
  19. item exit ${bold}Exit back to main menu...${boldoff}
  20. item --gap -- --------------------------------------------------------------------------
  21. item about ${fg_gre}${bold}Self Hosting and Live Booting - November 29, 2019
  22. item about ${fg_gre}${bold}Full Article: ${fg_whi}${bold}https://netboot.xyz/blog/
  23. item about
  24. item about ${fg_yel}${bold}* Self hosting options using Ansible and Docker (soon)
  25. item about ${fg_yel}${bold}* Live Boot options now available with more on the way
  26. item about ${fg_yel}${bold}${space}Allows you to PXE boot into a Live Desktop from Github
  27. item about ${fg_yel}${bold}* netboot.xyz repo moving to netbootxyz org on github
  28. item --gap -- --------------------------------------------------------------------------
  29. item about ${fg_cya}${bold}Follow us on Twitter: ${fg_whi}${bold}@netbootxyz
  30. item --gap -- --------------------------------------------------------------------------
  31. item about ${fg_gre}${bold}Join us on Discord: ${fg_whi}${bold}https://discord.gg/An6PA2a
  32. item --gap -- --------------------------------------------------------------------------
  33. item about ${fg_gre}${bold}Sponsorship: ${fg_whi}${bold}https://opencollective.com/netbootxyz
  34. item --gap -- --------------------------------------------------------------------------
  35. isset ${upstream_version} && goto display_version || goto skip_version
  36. :display_version
  37. iseq ${version} ${upstream_version} || item --gap -- ${fg_gre}${bold}Latest netboot.xyz version available: ${fg_whi}${bold}${upstream_version}
  38. item --gap -- --------------------------------------------------------------------------
  39. :skip_version
  40. choose selected || goto exit
  41. goto ${selected}
  42. :about
  43. clear menu
  44. goto netabout
  45. :exit
  46. clear menu
  47. exit