Merge pull request #30 from asimonson1125/certificates-page

quick and easy certs page
This commit is contained in:
2024-06-03 18:48:05 -04:00
committed by GitHub
2 changed files with 84 additions and 23 deletions

View File

@@ -18,6 +18,12 @@ pages['books']['books'] = books
app = flask.Flask(__name__) app = flask.Flask(__name__)
### TMP
@app.route('/certs')
def certs():
return flask.render_template("certs.html")
###
@app.route('/api/goto/') @app.route('/api/goto/')
@app.route('/api/goto/<location>') @app.route('/api/goto/<location>')
def goto(location='home'): def goto(location='home'):
@@ -71,29 +77,29 @@ def hotspotsRIT():
def hotspotsProxy(path): def hotspotsProxy(path):
return requests.get(f"{HotspotsURL}/{path}").content return requests.get(f"{HotspotsURL}/{path}").content
# @app.errorhandler(Exception) @app.errorhandler(Exception)
# def page404(e): def page404(e):
# eCode = e.code eCode = e.code
# message = e.description message = e.description
# try: try:
# message = e.length message = e.length
# finally: finally:
# pagevars = { pagevars = {
# "template": "error.html", "template": "error.html",
# "title": f"{eCode} - Simonson", "title": f"{eCode} - Simonson",
# "description": "Error on Andrew Simonson's Digital Portfolio", "description": "Error on Andrew Simonson's Digital Portfolio",
# "canonical": "404", "canonical": "404",
# } }
# return ( return (
# flask.render_template( flask.render_template(
# "header.html", "header.html",
# var=pagevars, var=pagevars,
# error=eCode, error=eCode,
# message=message, message=message,
# title=f"{eCode} - Simonson Portfolio", title=f"{eCode} - Simonson Portfolio",
# ), ),
# eCode, eCode,
# ) )
@app.route("/sitemap.xml") @app.route("/sitemap.xml")

55
src/templates/certs.html Normal file
View File

@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>lol hi</title>
</head>
<body>
<h1>Andrew's Secret Certification Page</h1>
<strong
>See
<a
href="https://www.linkedin.com/in/simonsonandrew/details/certifications/"
>here</a
>
for a comprehensive list of certifications that can be confirmed by
LinkedIn</strong
>
<p>
Some highlights:
</p>
<ul>
<li>
<a
href="https://www.linkedin.com/learning/certificates/2cb69378c606fec5a6f3a107b99a896862db392b7a3692f71a6b53af5d5545c5"
>Career Essentials in Data Analysis by Microsoft</a
>
</li>
<li>
<a
href="https://www.linkedin.com/learning/certificates/7facc28a13405134b3b7fa785303e9b1cf697f32d67f759e89960fbdc8a044d9"
>Career Essentials in GitHub Professional Certificate</a
>
</li>
<li>
<a
href="https://www.linkedin.com/learning/certificates/7b952323152e258ca468c33ddc9ebcf3c55036f58a5cfb3fb9c1410da655aaa5"
>Docker Foundations Professional Certificate</a
>
</li>
<li>
<a
href="https://www.linkedin.com/learning/certificates/7017147ac73af5bc26fdab9b3c43671fb8105a0de59d4689d5f0f71c549c150f"
>Data Science Foundations: Fundamentals</a
>
</li>
</ul>
<h2>RIT Entrepreneurial Certifications</h2>
<ul>
<li>Design Thinking Certification</li>
<li>Ideation Certification</li>
<li>Tools for Innovators Certification</li>
</ul>
<p>I have the pdfs for these somewhere that is not easily accessible to me as I try to push this out in a hurry. I have contacts if you want proof, I guess.</p>
</body>
</html>