Create website
This commit is contained in:
commit
ec398bd260
10 changed files with 398 additions and 0 deletions
96
gen/template.html
Normal file
96
gen/template.html
Normal file
|
@ -0,0 +1,96 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Owen Quinlan (BuyMyMojo) :)</title>
|
||||
<link rel="stylesheet" href="./style/styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<header class="flex justify-center">
|
||||
<picture>
|
||||
<source srcset="./files/me.jxl" type="image/jxl">
|
||||
<source srcset="./files/me.webp" type="image/webp">
|
||||
<img src="./files/me.png" alt="Artistic rendering of me!" loading="lazy" decoding="async" class="profile">
|
||||
</picture>
|
||||
|
||||
</header>
|
||||
<h1>Owen Quinlan (BuyMyMojo) ☕</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="mailto:hello+web@buymymojo.net"><span class="underline">Email</span></a></li>
|
||||
|
||||
<li>
|
||||
<a href="https://gamedev-coffee-shop.bearblog.dev/">
|
||||
<span class="underline"><strong>Blog</strong></span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://www.linkedin.com/in/owen-quinlan-b6b6431b7/">
|
||||
<span class="underline">LinkedIn</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://github.com/BuyMyMojo">
|
||||
<span class="underline">GitHub</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://gitlab.com/BuyMyMojo">
|
||||
<span class="underline">GitLab</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://crates.io/users/BuyMyMojo">
|
||||
<span class="underline">Crates.io</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="./files/OwenQuinlanCV2024-09.pdf" download>
|
||||
<span class="underline">Resume</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section id="summary">
|
||||
<h2>Summary</h2>
|
||||
<div class="summary">
|
||||
<h3>
|
||||
Dedicated Game Development Student. Strong background in Rust, Python, C#, with a focus on interactive
|
||||
mediums that make an impact on users. Passionate about roles involving game development,
|
||||
software development, and leveraging Rust for high-performance, thread-safe applications.
|
||||
Actively seeking opportunities that align with career goals of contributing to impactful, engaging
|
||||
media in game devlopment fields.
|
||||
</h3>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="experience" class="container">
|
||||
<h2>Work Experience</h2>
|
||||
{work}
|
||||
</section>
|
||||
|
||||
<section id="projects" class="container">
|
||||
<h2>Projects</h2>
|
||||
{projects}
|
||||
</section>
|
||||
<footer>
|
||||
<p>© 2024 Owen Quinlan (BuyMyMojo) :)</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue