My resume
0

Configure Feed

Select the types of activity you want to include in your feed.

Write a brief intro

Alex van de Sandt (Jul 19, 2026, 7:25 PM -0500) e601c75a eb8b96a2

+12 -7
+5 -1
sass/style.scss
··· 8 8 body { 9 9 background-color: #c9cbca; 10 10 color: #252524; 11 + } 11 12 12 - text-align: center; 13 + .center-block { 14 + max-width: 50%; 15 + margin: 0 auto; 13 16 } 14 17 15 18 h1 { ··· 21 24 height: 2em; 22 25 padding: 0.5em; 23 26 } 27 +
+7 -6
templates/index.html
··· 1 1 {% extends "base.html" %} 2 2 3 3 {% block content %} 4 - <header> 5 - <h1 class="title">Alex van de Sandt</h1> 4 + <header class="center-block"> 5 + <h1>Alex van de Sandt</h1> 6 6 <a href="https://github.com/igneousflock" target="_blank"><img src="github.svg" class="social-icon" /></a> 7 7 <a href="https://tangled.org/igneousflock.dev" target="_blank"><img src="tangled.svg" class="social-icon" /></a> 8 8 <a href="https://www.linkedin.com/in/alexvds/" target="_blank"><img src="linkedin.png" class="social-icon" /></a> 9 9 </header> 10 10 11 - <main> 12 - <a href="/resume.pdf">See my resume here!</a> 13 - <br /> 14 - There's not much else yet, otherwise. 11 + <main class="center-block"> 12 + <div> 13 + <p>Hi! I'm a Software Engineer specializing in Rust based in Chicago, Illinois. I'm currently seeking a full-time remote or hybrid role.</p> 14 + <p><a href="/resume.pdf">See my resume here!</a></p> 15 + </div> 15 16 </main> 16 17 {% endblock content %}