Skip to content

Commit

Permalink
Images to static folder
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelThamm committed Nov 8, 2023
1 parent 0ad8fc4 commit 0645de7
Show file tree
Hide file tree
Showing 25 changed files with 26 additions and 27 deletions.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import emailer
from flask import Flask, request, render_template

app = Flask(__name__)
app = Flask(__name__, static_url_path='/static')


@app.route('/')
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
51 changes: 25 additions & 26 deletions app/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Website</title>
<link rel="icon" type="image/x-icon" href="https://github.com/MichaelThamm/Website/blob/main/app/images/RocketFav.png?raw=true">
<link rel="icon" type="image/x-icon" href="/static/RocketFav.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
Expand All @@ -26,19 +26,19 @@

/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url("https://github.com/MichaelThamm/Website/blob/main/app/images/backgrounds/anthony-intraversato-skyline.jpg?raw=true");
background-image: url("/static/backgrounds/anthony-intraversato-skyline.jpg");
min-height: 100%;
}

/* Second image (Portfolio) */
.bgimg-2 {
background-image: url('https://github.com/MichaelThamm/Website/blob/main/app/images/backgrounds/ian-dooley-balloons.jpg?raw=true');
background-image: url("/static/backgrounds/ian-dooley-balloons.jpg");
min-height: 300px;
}

/* Third image (Contact) */
.bgimg-3 {
background-image: url("https://github.com/MichaelThamm/Website/blob/main/app/images/backgrounds/volodymyr-hryshchenko-contact.jpg?raw=true");
background-image: url("/static/backgrounds/volodymyr-hryshchenko-contact.jpg");
min-height: 300px;
}

Expand Down Expand Up @@ -97,9 +97,8 @@
<a href="#about" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i> ABOUT</a>
<a href="#portfolio" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> PORTFOLIO</a>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-envelope"></i> CONTACT</a>
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-red">
<i class="fa fa-search"></i>
</a>
<a href="#" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-red"><i class="fa fa-search"></i></a>
<a href="https://github.com/MichaelThamm/MichaelThamm/blob/main/MichaelThamm-CV.pdf" class="w3-bar-item w3-button w3-hide-small w3-hover-red"><i class="fa fa-handshake-o"></i> RESUME</a>
</div>

<!-- Navbar on small screens -->
Expand All @@ -124,12 +123,12 @@ <h3 class="w3-center">ABOUT ME</h3>
<p class="w3-center"><em>Tech Enthusiast</em></p>
<div class="w3-row">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/Headshot.jpg?raw=true" class="w3-round w3-image w3-hover-opacity-off" alt="Photo of Me" width="250" height="350">
<img src="/static/Headshot.jpg" class="w3-round w3-image w3-hover-opacity-off" alt="Photo of Me" width="250" height="350">
<p>
<b>Michael Thamm</b>
</p>
<p>
<a href="https://github.com/MichaelThamm/MichaelThamm/blob/main/MichaelThamm-CV.pdf"><img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoResume.png?raw=true" class="fa w3-hover-opacity" style="width: 40px;height: 40px"></a>
<a href="https://github.com/MichaelThamm/MichaelThamm/blob/main/MichaelThamm-CV.pdf"><img src="/static/logos/LogoResume.png" class="fa w3-hover-opacity" style="width: 40px;height: 40px"></a>
<a href="https://github.com/MichaelThamm"><i class="fa fa-github w3-hover-opacity" style="font-size: 35px"></i></a>
<a href="https://www.linkedin.com/in/michael-thamm/"><i class="fa fa-linkedin w3-hover-opacity" style="font-size: 32px; color: #0077B5"></i></a>
</p>
Expand All @@ -147,37 +146,37 @@ <h3 class="w3-center">ABOUT ME</h3>
<div class="w3-row w3-center w3-dark-grey w3-padding-16" style="display: flex">
<div class="w3-quarter w3-section child-ver">
<div class="w3-row w3-center w3-dark-grey child-hor w3-padding-small">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoMasterOfScience.png?raw=true" class="w3-image w3-round">
<img src="/static/logos/LogoMasterOfScience.png" class="w3-image w3-round">
</div>
<span class="w3-medium child-hor">Electrical Engineering</span>
</div>
<div class="w3-quarter w3-section child-ver">
<div class="w3-row w3-center w3-dark-grey child-hor">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoPython.png?raw=true" class="w3-image w3-round" style="width:17%" title="Python">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoJava.png?raw=true" class="w3-image w3-round" style="width:13%" title="Java">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoCpp.png?raw=true" class="w3-image w3-round" style="width:22%" title="C++">
<img src="/static/logos/LogoPython.png" class="w3-image w3-round" style="width:17%" title="Python">
<img src="/static/logos/LogoJava.png" class="w3-image w3-round" style="width:13%" title="Java">
<img src="/static/logos/LogoCpp.png" class="w3-image w3-round" style="width:22%" title="C++">
</div>
<span class="w3-medium child-hor">Programming Languages</span>
</div>
<div class="w3-quarter w3-section child-ver">
<div class="w3-row w3-center w3-dark-grey child-hor">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoDocker.png?raw=true" class="w3-image w3-round" style="width:18%" title="Docker">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoGitLab.png?raw=true" class="w3-image w3-round" style="width:15%" title="GitLab">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoLinux.png?raw=true" class="w3-image w3-round" style="width:12%" title="Linux">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoTerraform.png?raw=true" class="w3-image w3-round" style="width:14%" title="Terraform">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoAzureAD.png?raw=true" class="w3-image w3-round" style="width:14%" title="Azure AD">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoTraefik.png?raw=true" class="w3-image w3-round" style="width:11%" title="Traefik Proxy">
<img src="/static/logos/LogoDocker.png" class="w3-image w3-round" style="width:18%" title="Docker">
<img src="/static/logos/LogoGitLab.png" class="w3-image w3-round" style="width:15%" title="GitLab">
<img src="/static/logos/LogoLinux.png" class="w3-image w3-round" style="width:12%" title="Linux">
<img src="/static/logos/LogoTerraform.png" class="w3-image w3-round" style="width:14%" title="Terraform">
<img src="/static/logos/LogoAzureAD.png" class="w3-image w3-round" style="width:14%" title="Azure AD">
<img src="/static/logos/LogoTraefik.png" class="w3-image w3-round" style="width:11%" title="Traefik Proxy">
</div>
<span class="w3-medium child-hor">Dev Tools</span>
</div>
<div class="w3-quarter w3-section child-ver">
<div class="w3-row w3-center w3-dark-grey child-hor">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/flags/flag-of-Austria.png?raw=true" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Austria">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/flags/flag-of-Canada.png?raw=true" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Canada">
<img src="/static/flags/flag-of-Austria.png" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Austria">
<img src="/static/flags/flag-of-Canada.png" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Canada">
</div>
<div class="w3-row w3-center w3-dark-grey child-hor">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/flags/flag-of-Mexico.png?raw=true" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Mexico">
<img src="https://github.com/MichaelThamm/Website/blob/main/app/images/flags/flag-of-USA.png?raw=true" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="USA">
<img src="/static/flags/flag-of-Mexico.png" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="Mexico">
<img src="/static/flags/flag-of-USA.png" class="w3-round-large w3-image w3-hover-opacity-off" style="width:20%" title="USA">
</div>
<span class="w3-medium child-hor">Countries Worked In</span>
</div>
Expand Down Expand Up @@ -223,7 +222,7 @@ <h3 class="w3-center w3-padding-8">Career Projects</h3>
<h3 class="w3-center w3-padding-8">Career Companies</h3>
<div>
<div class="w3-container w3-center">
<a href="https://www.riskine.com/en/"><img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoRiskine.png?raw=true" class="w3-image w3-round" style="width:15%"></a>
<a href="https://www.riskine.com/en/"><img src="/static/logos/LogoRiskine.png" class="w3-image w3-round" style="width:15%"></a>
</div>
<p class="w3-center">I worked for <a href="https://www.riskine.com/en/">riskine</a> as a <em>DevOps Engineer</em> where I managed GitLab CI/CD pipelines and company infrastructure as a global systems administrator.<br>
My accomplishments and responsibilities include:
Expand All @@ -246,7 +245,7 @@ <h3 class="w3-center w3-padding-8">Career Companies</h3>
</div>
<div>
<div class="w3-container w3-center">
<a href="https://kinarm.com/"><img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoKinarm.jpg?raw=true" class="w3-image w3-round" style="width:15%"></a>
<a href="https://kinarm.com/"><img src="/static/logos/LogoKinarm.jpg" class="w3-image w3-round" style="width:15%"></a>
</div>
<p class="w3-center">I worked for <a href="https://kinarm.com/">Kinarm</a> as a <em>Juniour Software Developer</em> where I professionally transitioned careers from Electrical Engineer to Software Engineer.<br>
My accomplishments and responsibilities include:</p>
Expand All @@ -259,7 +258,7 @@ <h3 class="w3-center w3-padding-8">Career Companies</h3>
</div>
<div>
<div class="w3-container w3-center">
<a href="https://www.bravecs.com/"><img src="https://github.com/MichaelThamm/Website/blob/main/app/images/logos/LogoBraveCS.png?raw=true" class="w3-image w3-round" style="width:15%"></a>
<a href="https://www.bravecs.com/"><img src="/static/logos/LogoBraveCS.png" class="w3-image w3-round" style="width:15%"></a>
</div>
<p class="w3-center">I worked for <a href="https://www.bravecs.com/">Brave Control Solutions</a> as a <em>Controls Specialist</em> where I worked on projects in Canada: British Columbia & Ontario, USA: Michigan, and Mexico: Senora.<br>
My accomplishments and responsibilities include:</p>
Expand Down

0 comments on commit 0645de7

Please sign in to comment.