~carterpeterson/frontend

fac8ca371992d1b534ea666e194846e32411641c — Carter Peterson 2 years ago 0ebaab7
added about page and LICENSE
5 files changed, 33 insertions(+), 5 deletions(-)

A LICENSE
M content/_index.md
A content/about.md
M layouts/_default/baseof.html
M static/css/style.css
A LICENSE => LICENSE +7 -0
@@ 0,0 1,7 @@
Copyright 2022 Carter Peterson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

M content/_index.md => content/_index.md +0 -4
@@ 3,7 3,3 @@ title: "crtr.space homepage"
date: 2022-02-16T11:25:00-05:00
draft: false
---

I am carter peterson and this is my space on the internet.

This site is intentionally minimal. It has no tracking scripts or external resources and is currently hosted by [sourcehut pages](https://srht.site).
\ No newline at end of file

A content/about.md => content/about.md +17 -0
@@ 0,0 1,17 @@
---
title: about
date: 2022-02-16T12:50:05-05:00
draft: false
---

I am Carter Peterson and this is my space on the internet.

I currently reside in Brooklyn, NY and spend my time researching various computing subjects that I find deeply interesting. These subjects are loosely focused on the line between the organic world and the abstract world of computation.

Prior to my current research, I worked at Apple Inc. on a handful of interesting projects. The most well known would be the Google Apple Exposure Notification system, of which I wrote the underlying advertisment storage and risk calculation system.

I can be reached at

me \[at\] crtr \[dot\] email

This site is intentionally minimal. It has no tracking scripts or external resources and is currently hosted by [sourcehut pages](https://srht.site). Its source is available [here](https://git.sr.ht/~carterpeterson/frontend).
\ No newline at end of file

M layouts/_default/baseof.html => layouts/_default/baseof.html +2 -1
@@ 11,7 11,8 @@
	</head>
	<body>
		<header>
			{{ .Site.Params.headerText }}
			<a href="{{ .Site.BaseURL }}">{{ .Site.Params.headerText }}</a>
			<a id="about" href="{{ relURL "about" }}">about</a>
		</header>
		<main>
			{{ block "main" . }}

M static/css/style.css => static/css/style.css +7 -0
@@ 13,6 13,13 @@ body {
header {
    padding-top: 10px;
    font-size: x-large;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #about {
    font-size: medium;
}

main {