Skip to content

Commit 8ef0dd2

Browse files
committed
content updates
1 parent 057b5e6 commit 8ef0dd2

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

labapp/app/app.py

+22
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,28 @@ def port():
177177
ns=ns
178178
)
179179

180+
@app.route('/vnet')
181+
def vnet():
182+
"""reference page"""
183+
ns = eph_ns()
184+
html = render_md("markdown/reference.md")
185+
return render_template('coming-soon.html',
186+
title="MCN Practical: Reference",
187+
content=html,
188+
ns=ns
189+
)
190+
191+
@app.route('/netpolicy')
192+
def netp():
193+
"""reference page"""
194+
ns = eph_ns()
195+
html = render_md("markdown/reference.md")
196+
return render_template('coming-soon.html',
197+
title="MCN Practical: Reference",
198+
content=html,
199+
ns=ns
200+
)
201+
180202
@app.route('/ref')
181203
def ref():
182204
"""reference page"""

labapp/app/markdown/lb.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ Build an origin pool and load balancer based on the exercise requirements.
2828
The cloud app is only reachable from the <strong>student-awsnet</strong> site.
2929
</li>
3030
<li class="list-group-item">
31-
<img src="/static/tls-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
31+
<img src="/static/origin-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
3232
The cloud app is TLS only.
3333
</li>
3434
<li class="list-group-item">
35-
<img src="/static/tls-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
35+
<img src="/static/lb-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
3636
Use the wildcard cert provided in the shared NS, <strong>mcn-lab-wildcard</strong>, to enable TLS on the LB.
3737
</li>
3838
</ul>
@@ -115,7 +115,7 @@ Create a new origin pool for the Azure cloud app. Reuse your load balancer.
115115
The cloud app is only reachable from the <strong>student-azurenet</strong> site.
116116
</li>
117117
<li class="list-group-item">
118-
<img src="/static/tls-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
118+
<img src="/static/origin-icon.png" width="auto" height="50px"> &nbsp; &nbsp;
119119
The cloud app is TLS only.
120120
</li>
121121
</ul>

labapp/app/markdown/route.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ document.getElementById('requestBtn2').addEventListener('click', () => {
123123

124124
<div style="height:25px" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none border-bottom"></div>
125125

126-
Once you've completed the exercises, move on to the <a href="/header" class="alert-link">header manipulation</a> exercise.
126+
Once you've completed the exercises, move on to the <strong><a href="/manipulation" class="alert-link">manipulation</a></strong> exercise.

labapp/app/templates/coming-soon.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<div class="err">
77
<a href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none">
8-
<img src="/static/coming-soon.png" alt="Descriptive Text">
8+
<img src="/static/coming-soon.png" class="border" alt="Coming Soon">
99
</a>
1010
</div>
1111
{% endblock %}

0 commit comments

Comments
 (0)