diff --git a/nano/templates/pacman.tmpl b/nano/templates/pacman.tmpl
deleted file mode 100644
index f76d967a6af..00000000000
--- a/nano/templates/pacman.tmpl
+++ /dev/null
@@ -1,113 +0,0 @@
-
Status
-
-
- Generator Status:
-
-
- {{if data.active}}
- Online
- {{else}}
- Offline
- {{/if}}
-
-
- Generator Control:
-
-
- {{if data.active}}
- {{:helper.link('STOP', 'power-off', {'action' : "disable"})}}
- {{else}}
- {{:helper.link('START', 'power-off', {'action' : "enable"})}}
- {{/if}}
-
-
-Fuel
-
-
- Fuel Type:
-
-
- {{:data.fuel_type}}
-
-
- Fuel Level:
-
-
- {{if data.fuel_stored >= 5000}}
- {{:helper.displayBar(data.fuel_stored, 0, data.fuel_capacity, 'good')}}
-
{{:helper.smoothRound(data.fuel_stored)}}/{{:data.fuel_capacity}} cm3
- {{else data.fuel_stored >= 1000}}
- {{:helper.displayBar(data.fuel_stored, 0, data.fuel_capacity, 'average')}}
-
{{:helper.smoothRound(data.fuel_stored)}}/{{:data.fuel_capacity}} cm3
- {{else}}
- {{:helper.displayBar(data.fuel_stored, 0, data.fuel_capacity, 'bad')}}
-
{{:helper.smoothRound(data.fuel_stored)}}/{{:data.fuel_capacity}} cm3
- {{/if}}
-
-
- Fuel Usage:
-
-
- {{:helper.smoothRound(data.fuel_usage)}} cm3/s
-
- {{if !data.is_ai}}
-
- Control:
-
-
- {{:helper.link('EJECT FUEL', 'arrow-down', {'action' : "eject"}, data.active ? 'disabled' : null)}}
-
- {{/if}}
-
-Output
-
-
- Power setting:
-
-
- {{if data.output_set > data.output_safe}}
- {{:data.output_set}} / {{:data.output_max}} ({{:data.output_watts}} W)
- {{else}}
- {{:data.output_set}} / {{:data.output_max}} ({{:data.output_watts}} W)
- {{/if}}
-
-
- Control:
-
-
- {{:helper.link('+', null, {'action' : "higher_power"})}}
- {{:helper.link('-', null, {'action' : "lower_power"})}}
-
-
-Temperature
-
-
- Temperature:
-
-
- {{if data.temperature_current < (data.temperature_max * 0.8)}}
- {{:helper.displayBar(data.temperature_current, 0, (data.temperature_max * 1.5), 'good')}}
-
{{:helper.smoothRound(data.temperature_current)}} C
- {{else data.temperature_current < data.temperature_max}}
- {{:helper.displayBar(data.temperature_current, 0, (data.temperature_max * 1.5), 'average')}}
-
{{:helper.smoothRound(data.temperature_current)}} C
- {{else}}
- {{:helper.displayBar(data.temperature_current, 0, (data.temperature_max * 1.5), 'bad')}}
-
{{:helper.smoothRound(data.temperature_current)}} C
- {{/if}}
-
-
- Generator Status:
-
-
- {{if data.temperature_overheat > 50}}
- DANGER: CRITICAL OVERHEAT! Deactivate generator immediately!
- {{else data.temperature_overheat > 20}}
- WARNING: Overheating!
- {{else data.temperature_overheat > 1}}
- Temperature High
- {{else}}
- Optimal
- {{/if}}
-
-
\ No newline at end of file