Logo update

This commit is contained in:
2024-02-25 13:17:18 -06:00
parent 6deb4ee147
commit 7f95fdc4ca
10 changed files with 858 additions and 35 deletions

View File

@@ -11,7 +11,7 @@
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://asimonson.com{{ url_for('static', filename='photos/sun.png') }}"
content="https://asimonson.com{{ url_for('static', filename='icons/neonfinal2.svg') }}"
/>
<meta property="og:url" content="{{ var['description'] }}" />
<meta property="twitter:title" content="Andrew Simonson" />
@@ -20,7 +20,7 @@
<meta property="og:site_name" content="Andrew Simonson - Portfolio" />
<meta
property="twitter:image"
content="https://asimonson.com{{ url_for('static', filename='photos/sun.png') }}"
content="https://asimonson.com{{ url_for('static', filename='icons/neonfinal2.svg') }}"
/>
<meta name="twitter:image:alt" content="some example picture idk" />
<meta name="twitter:site" content="@asimonson1125" />
@@ -84,11 +84,9 @@
<div class="header">
<div id="name-container" onclick="goto('home', {toggle:false})">
<div class="glitch">
{% for i in range(9) %}
<div class="line name">
<span class="textGrad">Andrew Simonson</span>
</div>
{% endfor %}
</div>
</div>

View File

@@ -1,4 +1,14 @@
{% block content %}
{% block content %} {% macro nameplate() %}
<img
src="{{ url_for('static', filename='icons/neonfinal2.svg') }}"
id="homeIcon"
alt="logo"
/>
<h1 id="homeName">Andrew Simonson</h1>
<h3>Computer Science student at Rochester Institute of Technology</h3>
<h5>🦅 🦅 🦅 Raahhh wtf is homepage content, we don't do that here 🦅 🦅 🦅</h5>
{% endmacro %}
<div class="foreground homeground"></div>
<div class="foregroundContent homegroundContent">
<div class="relative">
@@ -6,19 +16,10 @@
<div id="HomeContent">
<div class="flex">
<div id="nametagContainer">
<div id="nametag" data-aos="fade-up">
<h1>Andrew Simonson</h1>
<h3>
Computer Science student at Rochester Institute of Technology
</h3>
<h5>🦅 🦅 🦅 Raahhh wtf is homepage content, we don't do that here 🦅 🦅 🦅</h5>
</div>
<div id="nametag" data-aos="fade-up">{{ nameplate() }}</div>
</div>
<div id="nametag" class="transparent unsetPos" data-aos="fade-up">
<h1>Andrew Simonson</h1>
<h3>
Computer Science student at Rochester Institute of Technology
</h3>
{{ nameplate() }}
</div>
</div>
</div>