diff --git a/labapp/app/app.py b/labapp/app/app.py
index d3dadf3..db33cd3 100644
--- a/labapp/app/app.py
+++ b/labapp/app/app.py
@@ -177,6 +177,28 @@ def port():
ns=ns
)
+@app.route('/vnet')
+def vnet():
+ """reference page"""
+ ns = eph_ns()
+ html = render_md("markdown/reference.md")
+ return render_template('coming-soon.html',
+ title="MCN Practical: Reference",
+ content=html,
+ ns=ns
+ )
+
+@app.route('/netpolicy')
+def netp():
+ """reference page"""
+ ns = eph_ns()
+ html = render_md("markdown/reference.md")
+ return render_template('coming-soon.html',
+ title="MCN Practical: Reference",
+ content=html,
+ ns=ns
+ )
+
@app.route('/ref')
def ref():
"""reference page"""
diff --git a/labapp/app/markdown/lb.md b/labapp/app/markdown/lb.md
index 1d0eb3c..ddacf7b 100644
--- a/labapp/app/markdown/lb.md
+++ b/labapp/app/markdown/lb.md
@@ -28,11 +28,11 @@ Build an origin pool and load balancer based on the exercise requirements.
The cloud app is only reachable from the student-awsnet site.
-
+
The cloud app is TLS only.
-
+
Use the wildcard cert provided in the shared NS, mcn-lab-wildcard, to enable TLS on the LB.
@@ -115,7 +115,7 @@ Create a new origin pool for the Azure cloud app. Reuse your load balancer.
The cloud app is only reachable from the student-azurenet site.
-
+
The cloud app is TLS only.
diff --git a/labapp/app/markdown/route.md b/labapp/app/markdown/route.md
index 2eab83b..682d0c2 100644
--- a/labapp/app/markdown/route.md
+++ b/labapp/app/markdown/route.md
@@ -123,4 +123,4 @@ document.getElementById('requestBtn2').addEventListener('click', () => {
-Once you've completed the exercises, move on to the header manipulation exercise.
\ No newline at end of file
+Once you've completed the exercises, move on to the manipulation exercise.
\ No newline at end of file
diff --git a/labapp/app/templates/coming-soon.html b/labapp/app/templates/coming-soon.html
index 647e17e..a9b1fa1 100644
--- a/labapp/app/templates/coming-soon.html
+++ b/labapp/app/templates/coming-soon.html
@@ -5,7 +5,7 @@
{% block content %}
{% endblock %}
\ No newline at end of file