Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handle Refs #36

Merged
merged 2 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
Binary file modified labapp/app/.DS_Store
Binary file not shown.
8 changes: 0 additions & 8 deletions labapp/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,6 @@ def port():
ns=ns
)

@app.route('/reference')
def ref():
"""reference page"""
ns = get_eph_ns()
return render_template('coming-soon.html',
title="MCN Practical: Reference"
)

@app.route('/score')
def score():
"""scoreboard page"""
Expand Down
123 changes: 123 additions & 0 deletions labapp/app/static/images/overview/f5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion labapp/app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ <h6 class="mb-1 p-2 bg-light rounded"><i class="bi bi-list-task"></i>&nbsp;&nbsp
<h6 class="mb-1 p-2 bg-light rounded"><i class="bi bi-speedometer2"></i>&nbsp;&nbsp;Miscellaneous</h6>
<ul class="list-unstyled fw-normal pb-1 small">
<li><a href="/score" class="link-dark rounded sidebar-link">Scoreboard</a></li>
<li><a href="/reference" class="link-dark rounded sidebar-link">Reference</a></li>
</ul>
</li>
</ul>
Expand Down
42 changes: 36 additions & 6 deletions labapp/app/templates/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,21 +183,50 @@ <h1><strong>Cloud App</strong></h1>

To demonstrate, you can access an endpoint of each cloud app from your browser.
</p>
<div style="height:25px"></div>

<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-12">
<a href="https://aws-cloud-app.mcn-lab.f5demos.com/pretty" target="_blank">
<img src="/static/images/overview/aws.png" height="100px" width="auto" class="rounded"/>
</a>
<a href="https://aws-cloud-app.mcn-lab.f5demos.com/pretty" target="_blank">
<img src="/static/images/overview/aws.png" style="height: 75px; width: auto;" class="rounded mx-auto d-block"/>
</a>
</div>
<div class="col-lg-6 col-md-12 h-100">
<div class="col-lg-6 col-md-12">
<a href="https://azure-cloud-app.mcn-lab.f5demos.com/pretty" target="_blank">
<img src="/static/images/overview/azure.png" height="100px" width="auto" class="rounded"/>
<img src="/static/images/overview/azure.png" style="height: 75px; width: auto;" class="rounded mx-auto d-block"/>
</a>
</div>
</div>
</div>
</div>

<div style="height:25px"></div>

<h1><strong>References</strong></h1>
<p>
Consult these sources if you need additional information to complete the exercises.
</p>

<ul class="list-group">
<li class="list-group-item">
<a href="https://docs.cloud.f5.com/docs-v2" target="_blank">
<img src="/static/images/overview/f5.svg" class="lab-icon"/>
<strong>F5 Distributed Cloud Technical Knowledge Hub</strong>
</a>
</li>
<li class="list-group-item">
<a href="https://docs.cloud.f5.com/docs/api" target="_blank">
<img src="/static/images/overview/f5.svg" class="lab-icon"/>
<strong>F5 Distributed Cloud Services API</strong>
</a>
</li>
<li class="list-group-item">
<a href="https://docs.cloud.f5.com/docs/" target="_blank">
<img src="/static/images/overview/f5.svg" class="lab-icon"/>
<strong>F5 Distributed Cloud Services Docs (legacy)</strong>
</a>
</li>
</ul>

<div style="height:25px"></div>

Expand All @@ -206,6 +235,7 @@ <h1><strong>Issues</strong></h1>
<p>
Use the lab repository <i class="bi bi-github"> </i><strong><a href="https://github.com/f5devcentral/f5xc-lab-mcn-practical/" target="_blank">issue tracker</a></strong> to report bugs, typos, or lab enhancements.
</p>

<div href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none border-bottom"></div>

<nav aria-label="labapp nav">
Expand Down