diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..56016c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/app/static/files/ diff --git a/SandboxNorm'sAcademy.zip b/SandboxNorm'sAcademy.zip deleted file mode 100644 index 66ab023..0000000 Binary files a/SandboxNorm'sAcademy.zip and /dev/null differ diff --git a/SandboxNormsAcademy.zip b/SandboxNormsAcademy.zip deleted file mode 100644 index 5b39792..0000000 Binary files a/SandboxNormsAcademy.zip and /dev/null differ diff --git a/app/__pycache__/__init__.cpython-311.pyc b/app/__pycache__/__init__.cpython-311.pyc index 1972612..c44ff78 100644 Binary files a/app/__pycache__/__init__.cpython-311.pyc and b/app/__pycache__/__init__.cpython-311.pyc differ diff --git a/app/__pycache__/routes.cpython-311.pyc b/app/__pycache__/routes.cpython-311.pyc index 65b7cfa..3e28cd7 100644 Binary files a/app/__pycache__/routes.cpython-311.pyc and b/app/__pycache__/routes.cpython-311.pyc differ diff --git a/app/routes.py b/app/routes.py index 998f4c1..69cec2e 100644 --- a/app/routes.py +++ b/app/routes.py @@ -5,7 +5,6 @@ import re import os import csv import glob -import zipfile from datetime import datetime, timezone, timedelta from functools import wraps import flask @@ -63,6 +62,7 @@ def correct_key(response): data = response.json() session["raw_school"] = data["data"]["attributes"]["properties"]["name"] session["sani_school"] = session["raw_school"].replace("[", "").replace("]", "") + session["client_path"] = os.path.join(TEMPLATES_FOLDER, session["sani_school"]) return render_template("home.html", title="Active Session") @@ -117,9 +117,13 @@ def render_home(): @app.route("/clear_session", methods=["GET", "POST"]) def clear_session(): if session.get("key"): + print("key exists") + print(session["key"]) if session.get("client_path"): client = session["client_path"] + print(client) wildcard = glob.glob(client + "_*") + print(wildcard) for directory in wildcard: try: shutil.rmtree(directory) @@ -170,7 +174,7 @@ def divide_values(file): for item in file[1:]: emails.append(item[0]) groups.append(item[1:]) - # FEAT: These two extract the groups and emails into two lists +# FEAT: These two extract the groups and emails into two lists groups = [item for group in groups for item in group] groups = list(set(groups)) return api_csv_parse(emails, groups) @@ -179,7 +183,7 @@ def divide_values(file): elif selection == "some-groups": submissions = [] for item in file[1:]: - # FEAT: This extracts each row as a list. Perfect for Learners in Specific Groups. +# FEAT: This extracts each row as a list. Perfect for Learners in Specific Groups. submissions.append(item) for item in submissions: emails.append(item[0]) @@ -427,19 +431,26 @@ def save_templates_backup(templates): @app.route("/download_templates", methods=["GET", "POST"]) @key_required def download_templates(): - zipped_file = f"{session['sani_school']}.zip" + zipped_file = f"{session['sani_school']}" zipped_file = zipped_file.replace(" ", "") zipped_file = zipped_file.replace("'", "") os.chdir = session["client_path"] - # zipped_file = os.path.join(session["client_path"], zipped_file) file_path = session["client_path"] zipped_path = os.path.join(TEMPLATES_FOLDER, zipped_file) download = shutil.make_archive(zipped_path, 'zip', file_path) return send_file(download, as_attachment=True) -def delete_zip(): - pass +@app.after_request +def delete_zip(response): + zipped_path = TEMPLATES_FOLDER + wildcard = glob.glob(zipped_path + ".zip") + for zipfile in wildcard: + try: + shutil.rmtree(zipfile) + except OSError: + print(OSError) + return response @app.route("/undo_template", methods=["POST"]) @key_required @@ -448,17 +459,6 @@ def undo_template(): if request.form["undo_templates"]: pass - @app.route("/stop", methods=["POST"]) def stop(): print("stopping") - - # flask.session.permanent = False - # app.permanent_session_lifetime = datetime.timedelta(minutes=20) - # flask.session.modified = True - # flask.secret_key = "@&I\x1a?\xce\x94\xbb0w\x17\xbf&Y\xa2\xc2(A\xf5\xf2\x97\xba\xeb\xfa" - - -# if __name__ == "__main__": -# socketio.run(app, debug=True) -# ask_key() diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/SandboxNormsAcademy.zip.zip b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/SandboxNormsAcademy.zip.zip deleted file mode 100644 index 8244f1e..0000000 Binary files a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/SandboxNormsAcademy.zip.zip and /dev/null differ diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:47:12/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 19:51:26/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:00:21/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:14/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:22:53/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:25:22/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:28:28/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:31:36/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:11/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:32:41/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:05/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:34/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 20:34:54/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:10:35/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:11:11/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:06/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:16/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:12:53/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:13/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:15/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:13:47/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:31/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:17:53/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:19:04/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:20:54/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:21:11/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_course.html.liquid deleted file mode 100644 index 7d08608..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_course.html.liquid +++ /dev/null @@ -1,49 +0,0 @@ - -
- {% if course.ribbon %} -
- {{ course.ribbon }} -
- {% endif %} - -
-

- {{ course.name }} -

-
- {{ course.full_description }} -
- -
- {% t shared.progress, count: course.progress %} -
- -
-
-
- diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_featured_course.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_featured_course.html.liquid deleted file mode 100644 index 70cba72..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_cards_featured_course.html.liquid +++ /dev/null @@ -1,44 +0,0 @@ -
-
- -
-
diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_course_details.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_course_details.html.liquid deleted file mode 100644 index e69de29..0000000 diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_footer.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_footer.html.liquid deleted file mode 100644 index 79a0481..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_footer.html.liquid +++ /dev/null @@ -1,80 +0,0 @@ - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_head.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_head.html.liquid deleted file mode 100644 index bde9ff3..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_head.html.liquid +++ /dev/null @@ -1,11 +0,0 @@ -{% styles default %} -{% styles colors %} -{% styles custom %} - - - - - - - - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_header.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_header.html.liquid deleted file mode 100644 index 56b76c5..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_header.html.liquid +++ /dev/null @@ -1,183 +0,0 @@ -
-
-
- {% if current_person.signed_in? %} - - - {% endif %} -
- {% if current_school.logo_url %} -

- - {{ current_school.name }} - -

- {% else %} - - {{ current_school.name }} - - {% endif %} - -
- -
- - {% if current_person.signed_in? %} - -
- - -
- {% else %} -
- {% endif %} - -
- -
-
-
-
- -{% include "messages" %} - diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_faqs.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_faqs.html.liquid deleted file mode 100644 index 7e6d46f..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_faqs.html.liquid +++ /dev/null @@ -1,109 +0,0 @@ - -/ - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_instructors.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_instructors.html.liquid deleted file mode 100644 index 2433e20..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/_section_instructors.html.liquid +++ /dev/null @@ -1,91 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/catalog.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/catalog.html.liquid deleted file mode 100644 index 8ce1105..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/catalog.html.liquid +++ /dev/null @@ -1,39 +0,0 @@ -{% include "header" %} -{% include "course_version_outdated_alert", courses: courses.in_catalog %} -
-
-
-
-
- Menlo Security Resrouces -
-
- Resources to help you make the most of your Security Training -
-
-
-{% include "sub_navigation" %} - {% include "courses_catalog" %} - -{% include "footer" %} - - - - - \ No newline at end of file diff --git a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/community.html.liquid b/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/community.html.liquid deleted file mode 100644 index 5435a70..0000000 --- a/app/static/files/templates/Sandbox Norm's Academy_03-29-2023 21:22:13/community.html.liquid +++ /dev/null @@ -1,33 +0,0 @@ - {% include 'header' %} -
-
-

Explore

-
- {% include 'sub_navigation' %} -
- -
-
-{% include 'footer' %} - - - \ No newline at end of file diff --git a/app/static/files/templates/SandboxNormsAcademy.zip.zip b/app/static/files/templates/SandboxNormsAcademy.zip.zip deleted file mode 100644 index cdc84d5..0000000 Binary files a/app/static/files/templates/SandboxNormsAcademy.zip.zip and /dev/null differ