diff --git a/.gitignore b/.gitignore
index b205af7..3a434a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -103,6 +103,10 @@ ENV/
# pygeoapi artifacts
*.openapi.yml
+# development setup examples
+example-config.yml
+example-openapi.yml
+
# misc
*.swp
.pytest_cache
diff --git a/pygeoapi/templates/tilematrixsets/tilematrixset.html b/pygeoapi/templates/tilematrixsets/tilematrixset.html
index 5aae274..9a7e1c0 100644
--- a/pygeoapi/templates/tilematrixsets/tilematrixset.html
+++ b/pygeoapi/templates/tilematrixsets/tilematrixset.html
@@ -1,18 +1,19 @@
-{% extends "_base.html" %}
-{% block title %}{{ super() }} {% trans %}TileMatrixSet{% endtrans %} {% endblock %}
-{% block crumbs %}{{ super() }}
-/ {% trans %}TileMatrixSet{% endtrans %}
-{% endblock %}
-{% block body %}
-
-
- {{ data['id'] }} tile matrix set
-
- - CRS: {{ data['crs'] }}
- - Uri: {{ data['uri'] }}
- - Well Known Scale Set: {{ data['wellKnownScaleSet'] }}
-
-
-
-
+{% extends "_base.html" %} {% block title %}{{ super() }} {% trans
+%}TileMatrixSet{% endtrans %} {% endblock %} {% block crumbs %}{{ super() }} /
+{% trans %}TileMatrixSet{% endtrans %}
+{% endblock %} {% block body %}
+
+ {{ data['id'] }} tile matrix set
+
+ -
+ CRS: {{ data['crs'] }}
+
+ -
+ Uri: {{ data['uri'] }}
+
+ -
+ Well Known Scale Set: {{ data['wellKnownScaleSet'] }}
+
+
+
{% endblock %}