My resume
0

Configure Feed

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

Include roboto/source sans in site

Alex van de Sandt (Jul 17, 2026, 11:41 PM -0500) a51df6c3 6bce780f

+18 -1
+11
sass/style.scss
··· 1 + $main-font-stack: 'Source Sans 3', sans-serif; 2 + $header-font-stack: Roboto, sans-serif; 3 + 4 + * { 5 + font-family: $main-font-stack; 6 + } 7 + 8 + h1 { 9 + font-family: $header-font-stack; 10 + } 11 +
+6
templates/base.html
··· 3 3 <head> 4 4 <meta charset="utf-8"> 5 5 <title>Alex van de Sandt</title> 6 + 7 + <link rel="stylesheet" type="text/css" href="style.css"> 8 + 9 + <link rel="preconnect" href="https://fonts.googleapis.com"> 10 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 11 + <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&family=Source+Sans+3:wght@200..900&display=swap" rel="stylesheet"> 6 12 </head> 7 13 8 14 <body>
+1 -1
templates/index.html
··· 1 1 {% extends "base.html" %} 2 2 3 3 {% block content %} 4 - <h1 class = "title">Hello!</h1> 4 + <h1 class = "title">Alex van de Sandt</h1> 5 5 6 6 There's not much here yet. 7 7 {% endblock content %}