diff --git a/app/templates/new/layouts/org_template.html b/app/templates/new/layouts/org_template.html
new file mode 100644
index 000000000..5e04003fd
--- /dev/null
+++ b/app/templates/new/layouts/org_template.html
@@ -0,0 +1,35 @@
+{% extends "base.html" %}
+
+{% block per_page_title %}
+ {% block org_page_title %}{% endblock %} – {{ current_org.name }}
+{% endblock %}
+
+{% block main %}
+
{% if help %}
diff --git a/app/templates/new/templates_glossary.md b/app/templates/new/templates_glossary.md
index 894628d89..81325e26c 100644
--- a/app/templates/new/templates_glossary.md
+++ b/app/templates/new/templates_glossary.md
@@ -6,10 +6,10 @@ This document serves as a glossary for the templates directory structure of the
## Directory Structure
- `/templates`
- - `base.html`: The main base template from which all other templates inherit. This template is a combination of `main_template`, `admin_template`, `settings_template`, and `content_template`.
+ - `base.html`: The main base template from which all other templates inherit. This template is a combination of `main_template`, `admin_template`, `withoutnav_template` and `content_template`.
- **/layouts**: Contains base templates and shared layouts used across the site. Simply put, it defines the overall structure or skeleton of the application (less frequently revised).
- `withnav_template.html`: A variation of the base layout that includes a sidebar.
- - `/error`: Templates for handling HTTP errors
+ - `org_template.html`: A variaton of the withnav_template
- **/components**: Houses reusable UI components that can be included in multiple templates and can be tailored with different content or links depending on the context.(more frequently revised or customized)
- `header.html`: Template for the site's header, included in `base.html`.
- `footer.html`: Template for the site's footer, included in `base.html`.
@@ -28,10 +28,10 @@ This document serves as a glossary for the templates directory structure of the
### Old Layout Templates We Don't Need
- withoutnav_template.html Delete
- main_template.html Delete
-- settings_templates.html Delete
+- settings_templates.html `withnav_template` can be used to replace `settings_template`.
- settings_nav.html (move to /new/navigation directory)
- main_nav.html (move to /new/navigation directory)
- service_navigation.html (move to /new/navigation directory)
-- org_template, could be under it's own directory called /organization
+- org_template, could be under it's own directory called /layout/organization
- org_nav.html (move to /new/navigation directory)
-- -content_template.html Delete and consolidate to base template
+- content_template.html Delete