diff --git a/Makefile b/Makefile
index d7ed7ea..dc777ff 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,8 @@ OEX_INTRO_COURSE=Intro\ To\ Open\ edX\ Course
OEX_INTRO_COURSE_TAR=dist/$(OEX_INTRO_COURSE).tar.gz
DEV_INTRO_COURSE=Open\ edX\ Developer\ Onboarding
DEV_INTRO_COURSE_TAR=dist/$(DEV_INTRO_COURSE).tar.gz
+OLX_EXAMPLE_COURSE=olx_example_course
+OLX_EXAMPLE_COURSE_TAR=dist/olx_example_course.tar.gz
help: ## Display this help message.
@echo "Please use \`make ' where is one of"
@@ -20,6 +22,7 @@ dist: clean ## Create/overwrite exports in ./dist/ folder for courses
cd $(CC_COURSE) && tar czfv ../$(CC_COURSE_TAR) ./course/
cd $(OEX_INTRO_COURSE) && tar czfv ../$(OEX_INTRO_COURSE_TAR) ./course/
cd $(DEV_INTRO_COURSE) && tar czfv ../$(DEV_INTRO_COURSE_TAR) ./course/
+ cd $(OLX_EXAMPLE_COURSE) && tar czfv ../$(OLX_EXAMPLE_COURSE_TAR) ./course/
gitclean: ## Remove hidden system files that are ignored by git.
git clean -dfX
@@ -28,3 +31,4 @@ unpack: ## Unpack course exports from ./dist/ folder into source OLX.
[ -f $(CC_COURSE_TAR) ] && mkdir -p $(CC_COURSE) && (cd $(CC_COURSE) && tar xzfv ../$(CC_COURSE_TAR)) || echo "No course to unpack."
[ -f $(OEX_INTRO_COURSE_TAR) ] && mkdir -p $(OEX_INTRO_COURSE) && (cd $(OEX_INTRO_COURSE) && tar xzfv ../$(OEX_INTRO_COURSE_TAR)) || echo "No course to unpack."
[ -f $(DEV_INTRO_COURSE_TAR) ] && mkdir -p $(DEV_INTRO_COURSE) && (cd $(DEV_INTRO_COURSE) && tar xzfv ../$(DEV_INTRO_COURSE_TAR)) || echo "No course to unpack."
+ [ -f $(OLX_EXAMPLE_COURSE_TAR) ] && mkdir -p $(OLX_EXAMPLE_COURSE) && (cd $(OLX_EXAMPLE_COURSE) && tar xzfv ../$(OLX_EXAMPLE_COURSE_TAR)) || echo "No course to unpack."
diff --git a/README.rst b/README.rst
index 9bc8eaa..4913238 100644
--- a/README.rst
+++ b/README.rst
@@ -30,6 +30,10 @@ This repository contains courses that you can import into your Open edX instance
-
- `<./dist/olx-example.tar.gz>`_
- `<./olx-example>`_
+ * *OLX example course*
+ - ``course-v1:OpenedX+OLXex+2025``
+ - `<./dist/OLX-example-course.tar.gz>`_
+ - `<./OLX-example-course>`_
* - *Core Contributor Onboarding Course*
- ``course-v1:OpenedX+NewCC+2024``
- `<./dist/Core\ Contributor\ Onboarding.tar.gz>`_
diff --git a/dist/OLX-example-course.tar.gz b/dist/OLX-example-course.tar.gz
new file mode 100644
index 0000000..952031d
Binary files /dev/null and b/dist/OLX-example-course.tar.gz differ
diff --git a/dist/olx_example_course.tar.gz b/dist/olx_example_course.tar.gz
new file mode 100644
index 0000000..f39f2d7
Binary files /dev/null and b/dist/olx_example_course.tar.gz differ
diff --git a/olx_example_course/README.rst b/olx_example_course/README.rst
new file mode 100644
index 0000000..535b689
--- /dev/null
+++ b/olx_example_course/README.rst
@@ -0,0 +1,10 @@
+OLX Example Course
+==================================
+
+This is the OLX example course described in the `OLX documentation `_.
+It contains all the course content in an unzipped view. You can use it to:
+
+* Inspect the OLX code
+* Reviews the assets in the course
+
+It should not be used to import into your Open edX instance. Use the ``tar.gz`` file in the top-level ``dist`` directory.
diff --git a/olx_example_course/course/about/overview.html b/olx_example_course/course/about/overview.html
new file mode 100644
index 0000000..ed23c85
--- /dev/null
+++ b/olx_example_course/course/about/overview.html
@@ -0,0 +1,46 @@
+
+About This Course
+
+
+What is Open Learning XML?
+OLX (open learning XML) is the XML-based standard used to build courses for the Open edX Platform.
+With OLX, you can:
+Move content between instances of Open edX.
+Create course content outside of Open edX Studio, including by conversion from other content formats.
+Ensure content remains free of proprietary encoding and allow portability.
+
+
+
+
+Requirements
+OLX is based on XML. XML, or Extensible Markup Language, is a set of rules for creating documents in a format that is both human-readable and machine- readable.
+To work with OLX, you should have a strong understanding of XML. This course presumes you understand XML and can use tools to create and edit XML files.
+
+
+Course Staff
+
+
+Sarina Canelake
+Sarina has been working on the Open edX project since 2012. She is the administrator of the Core Contributor program and the Engineering Manager of the Axim Engineering Team. Based in Boston, Massachusetts, USA, you can usually find her grilling, watching Deep Space 9, setting up elaborate Christmas light displays, or playing with her cats: Rupert, Arthur, and Ashley.
+
+
+
+Frequently Asked Questions
+
+What web browser should I use?
+The Open edX platform works best with current versions of Chrome, Edge, Firefox, or Safari.
+See our list of supported browsers for the most up-to-date information.
+
+Can I reuse parts of this course?
+Yes, you are welcome to reuse parts of this course, but you will have to check the license and provide the correct attribution.
+All content is made available under a Creative Commons BY-NC-SA 3.0 US License <http://creativecommons.org/licenses/by-nc-sa/3.0/us/>.
+All code is made available under an AGPLv3 License.
+
+You can find more frequently asked questions and their answers on the Open edX® FAQ page.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/olx_example_course/course/about/short_description.html b/olx_example_course/course/about/short_description.html
new file mode 100644
index 0000000..84260cf
--- /dev/null
+++ b/olx_example_course/course/about/short_description.html
@@ -0,0 +1 @@
+OLX (open learning XML) is the XML-based standard used to build courses for the Open edX Platform.
\ No newline at end of file
diff --git a/olx_example_course/course/assets/assets.xml b/olx_example_course/course/assets/assets.xml
new file mode 100644
index 0000000..816a689
--- /dev/null
+++ b/olx_example_course/course/assets/assets.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/olx_example_course/course/chapter/section_1_homework.xml b/olx_example_course/course/chapter/section_1_homework.xml
new file mode 100644
index 0000000..469f709
--- /dev/null
+++ b/olx_example_course/course/chapter/section_1_homework.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/olx_example_course/course/chapter/section_2_exams.xml b/olx_example_course/course/chapter/section_2_exams.xml
new file mode 100644
index 0000000..060651d
--- /dev/null
+++ b/olx_example_course/course/chapter/section_2_exams.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/olx_example_course/course/course.xml b/olx_example_course/course/course.xml
new file mode 100644
index 0000000..e478b48
--- /dev/null
+++ b/olx_example_course/course/course.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/olx_example_course/course/course/2025.xml b/olx_example_course/course/course/2025.xml
new file mode 100644
index 0000000..507936b
--- /dev/null
+++ b/olx_example_course/course/course/2025.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/olx_example_course/course/html/lti_introduction.html b/olx_example_course/course/html/lti_introduction.html
new file mode 100644
index 0000000..af9dc19
--- /dev/null
+++ b/olx_example_course/course/html/lti_introduction.html
@@ -0,0 +1,2 @@
+LTI, or Learning Tools Interoperability, allows you to establish a secure connection between your LMS and another tool, allowing your learners to securely transfer the data necessary to complete an activity in an external learning tool without having to register. This also allows you to pass grades and other data between the two tools, making it invaluable for technical integrations. LTI is a standard across the learning industry and requires that the tool being used provides support for this type of connection, but this provides access to a huge number of potential learning tools available for your courses.
+As of December 2023, the Open edX platform supports LTI 1.1 and LTI 1.3.
\ No newline at end of file
diff --git a/olx_example_course/course/html/lti_introduction.xml b/olx_example_course/course/html/lti_introduction.xml
new file mode 100644
index 0000000..edd1d02
--- /dev/null
+++ b/olx_example_course/course/html/lti_introduction.xml
@@ -0,0 +1 @@
+
diff --git a/olx_example_course/course/html/olx_resources.html b/olx_example_course/course/html/olx_resources.html
new file mode 100644
index 0000000..1c3a814
--- /dev/null
+++ b/olx_example_course/course/html/olx_resources.html
@@ -0,0 +1,2 @@
+The Open edX Documentation Site, docs.openedx.org, holds documentation for educators, learners, and all other types of Open edX users.
+OLX Documentation is written specifically with course authors in mind.
\ No newline at end of file
diff --git a/olx_example_course/course/html/olx_resources.xml b/olx_example_course/course/html/olx_resources.xml
new file mode 100644
index 0000000..5d1c41a
--- /dev/null
+++ b/olx_example_course/course/html/olx_resources.xml
@@ -0,0 +1 @@
+
diff --git a/olx_example_course/course/html/what_is_olx.html b/olx_example_course/course/html/what_is_olx.html
new file mode 100644
index 0000000..0dd5b35
--- /dev/null
+++ b/olx_example_course/course/html/what_is_olx.html
@@ -0,0 +1,8 @@
+OLX (open learning XML) is the XML-based standard used to build courses for the Open edX Platform.
+With OLX, you can:
+
+- Move content between Open edX instances.
+- Create course content outside of Open edX Studio, including by conversion from other content formats.
+- Ensure content remains free of proprietary encoding and allow portability.
+
+
\ No newline at end of file
diff --git a/olx_example_course/course/html/what_is_olx.xml b/olx_example_course/course/html/what_is_olx.xml
new file mode 100644
index 0000000..b376121
--- /dev/null
+++ b/olx_example_course/course/html/what_is_olx.xml
@@ -0,0 +1 @@
+
diff --git a/olx_example_course/course/html/what_is_xml.html b/olx_example_course/course/html/what_is_xml.html
new file mode 100644
index 0000000..e8b3603
--- /dev/null
+++ b/olx_example_course/course/html/what_is_xml.html
@@ -0,0 +1,3 @@
+
OLX is based on XML. XML, or Extensible Markup Language, is a set of rules for creating documents in a format that is both human-readable and machine- readable.
+To work with OLX, you should have a strong understanding of XML. This document presumes you understand XML and can use tools to create and edit XML files.
+For a primer on XML, see the Wikipedia XML entry.
\ No newline at end of file
diff --git a/olx_example_course/course/html/what_is_xml.xml b/olx_example_course/course/html/what_is_xml.xml
new file mode 100644
index 0000000..7aa3911
--- /dev/null
+++ b/olx_example_course/course/html/what_is_xml.xml
@@ -0,0 +1 @@
+