diff --git a/page.html b/page.html
new file mode 100644
index 0000000000000000000000000000000000000000..c326b8c8eb9e5ed094a853928dfe398135398701
--- /dev/null
+++ b/page.html
@@ -0,0 +1,5 @@
+{% extends "templates/page.html" %}
+
+{% block main %}
+{% set n_gpus = 1 %}
+{% endblock %}
\ No newline at end of file
diff --git a/spawn.html b/spawn.html
index 5ab101df38a9f48ebcbe7a264469de2b287d2f90..80b6a05b0934c5115561923f9a6dc148a2ebf00f 100644
--- a/spawn.html
+++ b/spawn.html
@@ -1,7 +1,5 @@
 {% extends "templates/spawn.html" %}
 
-{% set n_gpus = 1 %}
-
 {% block heading %}
 <label for="gpus">GPUs</label>
 <input class="form-control input-lg" type="range" name="gpus" value="{{ n_gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>