diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml
index 00285d6..e2f067c 100644
--- a/.github/workflows/package.yml
+++ b/.github/workflows/package.yml
@@ -17,7 +17,7 @@ jobs:
dnf -y install 'dnf-command(config-manager)'
dnf -y config-manager --set-enabled crb
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm
- yum -y install git rpm-build rpm-sign rsync make python3-rpm-macros systemd-rpm-macros pyproject-rpm-macros python3-devel python3-toml python3-wheel
+ yum -y install git rpm-build rpm-sign rsync make python3-rpm-macros pyproject-rpm-macros python3-devel python3-tomli systemd-rpm-macros python3-wheel
- name: Clone Repository
uses: actions/checkout@v3
diff --git a/README.md b/README.md
index f5eded8..c1fb424 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-## Windmill Hill observatory dashboard
+## The Marsh Observatory dashboard
Web dashboard for the Warwick campus observatory.
A Flask application that hosts dashboards showing the current / historical weather, webcams, and telescope-specific information.
diff --git a/dashboard/templates/dashboard.html b/dashboard/templates/dashboard.html
index 74d14a9..3f56e2c 100644
--- a/dashboard/templates/dashboard.html
+++ b/dashboard/templates/dashboard.html
@@ -1,5 +1,5 @@
{% extends "layout.html" %}
-{% set title = 'Windmill Hill Dashboard' -%}
+{% set title = 'TMO Dashboard' -%}
{% set active_page = 'dashboard' -%}
{% block body %}
diff --git a/dashboard/templates/environment.html b/dashboard/templates/environment.html
index 149593f..ab25847 100644
--- a/dashboard/templates/environment.html
+++ b/dashboard/templates/environment.html
@@ -1,5 +1,5 @@
{% extends "layout.html" %}
-{% set title = 'Environment' -%}
+{% set title = 'TMO Weather DB' -%}
{% set active_page = 'environment' -%}
{% block body %}
diff --git a/dashboard/templates/files.html b/dashboard/templates/files.html
index 7a0079e..88929aa 100644
--- a/dashboard/templates/files.html
+++ b/dashboard/templates/files.html
@@ -1,5 +1,5 @@
{% extends "layout.html" %}
-{% set title = 'TCS Control' -%}
+{% set title = 'TMO Files' -%}
{% set active_page = 'files' -%}
{% block body %}
diff --git a/dashboard/templates/layout.html b/dashboard/templates/layout.html
index c1f20ec..cc8a8da 100644
--- a/dashboard/templates/layout.html
+++ b/dashboard/templates/layout.html
@@ -85,7 +85,7 @@