From fac8ca371992d1b534ea666e194846e32411641c Mon Sep 17 00:00:00 2001 From: Carter Peterson Date: Wed, 16 Feb 2022 13:40:03 -0500 Subject: [PATCH] added about page and LICENSE --- LICENSE | 7 +++++++ content/_index.md | 4 ---- content/about.md | 17 +++++++++++++++++ layouts/_default/baseof.html | 3 ++- static/css/style.css | 7 +++++++ 5 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 LICENSE create mode 100644 content/about.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..32d8fcb --- /dev/null +++ b/LICENSE @@ -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 diff --git a/content/_index.md b/content/_index.md index 1afbe41..e820f70 100644 --- a/content/_index.md +++ b/content/_index.md @@ -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 diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..748e5fd --- /dev/null +++ b/content/about.md @@ -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 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d2264d6..65f470a 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -11,7 +11,8 @@
- {{ .Site.Params.headerText }} + {{ .Site.Params.headerText }} + about
{{ block "main" . }} diff --git a/static/css/style.css b/static/css/style.css index 0336dc9..fddb061 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -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 { -- 2.45.2