-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add about page and update blog layout
- Loading branch information
Showing
5 changed files
with
68 additions
and
262 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
import BaseLayout from "../layouts/BaseLayout.astro"; | ||
--- | ||
|
||
<BaseLayout | ||
imgLink="" | ||
title="About - Andrew Moses" | ||
subtitle="Who am I? What do I do? Why do I do it?" | ||
> | ||
<div | ||
style="margin-top: 20px; display: flex; justify-content: center; gap: 10px; max-width: 100%; flex-wrap: wrap; margin-bottom" | ||
> | ||
<img | ||
src="/andrew-full-lean.jpg" | ||
alt="A channel in the UPL Discord reads '8 people in UPL'." | ||
style="max-width: 450px; width: auto;" | ||
/> | ||
</div> | ||
|
||
<i | ||
style="display: flex; justify-content: center; margin-top: 10px; font-size: 0.95em;" | ||
> | ||
A picture of me at <a | ||
href="https://madhacks.io" | ||
style="padding-left: 4px;" | ||
target="_blank">MadHacks</a | ||
>! | ||
</i> | ||
|
||
<p>Hi! I'm Andrew. (TODO)</p> | ||
</BaseLayout> | ||
|
||
<style> | ||
img, | ||
video { | ||
border: 1px solid #cfbe9b; | ||
padding: 5px; | ||
transition: border 0.2s; | ||
} | ||
|
||
img:hover, | ||
video:hover { | ||
border: 1px solid #f1e9d8; | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters