diff --git a/_includes/defaultFooter.html b/_includes/defaultFooter.html index 77dda75..588b7ae 100644 --- a/_includes/defaultFooter.html +++ b/_includes/defaultFooter.html @@ -1,8 +1,6 @@
- Made with πŸ’• (and Jekyll)
Β© Andrew Conlin 2023-2024
All rights reverse engineered -
diff --git a/_includes/header.html b/_includes/header.html index 2069655..e71fbae 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,6 +1,5 @@

andrewconl.in

- blog // weeklinks // til // projects // meta +

blog // weeklinks // til // projects // meta

-
-
\ No newline at end of file +
diff --git a/_includes/postFooter.html b/_includes/postFooter.html index 417b4ce..93116e3 100644 --- a/_includes/postFooter.html +++ b/_includes/postFooter.html @@ -1,4 +1,4 @@

-Issues or comments? Email me! +Issues or comments? Email me!
diff --git a/_layouts/post.html b/_layouts/post.html index 3e112ac..c51c444 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,12 +1,10 @@ --- layout: default --- - ~ > {{page.category}} > {{page.title}}
{{ page.date | date: "%Y-%m-%d" }}
{{ content | reading_time | pluralize: "minute" }} -

{{ content }} diff --git a/assets/css/default.css b/assets/css/default.css index f1df11e..44d29f4 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -1,5 +1,23 @@ +@font-face { + font-family: 'Geist'; + src: url('/assets/fonts/Geist-Regular.otf') format('opentype'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Geist Mono'; + src: url('/assets/fonts/GeistMonoNerdFont-Regular.otf') format('opentype'); + font-weight: normal; + font-style: normal; +} + body { - font-family: monospace; + font-family: Geist, sans-serif; +} + +code { + font-family: Geist Mono, monospace; } div.container { @@ -41,23 +59,31 @@ div.content { } body { - background-color: #ffffff; - color: #000000; + background-color: #242424; + color: #E7D7AD; } pre { - background-color:antiquewhite; + background-color:#32302F; padding: 10px 10px 10px 10px; border-radius: 10px; white-space: pre-wrap; white-space: pre-wrap; } -hr { - border: 2px dashed #000000; - border-style: none none dashed; - color: transparent; - background-color: transparent; +a { + color: #E7D7AD; + text-decoration: none; + border-bottom: 3px solid #FABD2F; + border-radius: 2px; +} + +a:hover { + color: #242424; + background: #FABD2F; + text-decoration: none; + border-bottom: 3px solid #FABD2F; + border-radius: 2px; } img { @@ -66,4 +92,9 @@ img { margin-left: auto; margin-right: auto; display: block; -} \ No newline at end of file +} + +::selection { + color: #242424; + background: #FABD2F; +} diff --git a/assets/fonts/Geist-Regular.otf b/assets/fonts/Geist-Regular.otf new file mode 100644 index 0000000..bb41355 Binary files /dev/null and b/assets/fonts/Geist-Regular.otf differ diff --git a/assets/fonts/GeistMonoNerdFont-Regular.otf b/assets/fonts/GeistMonoNerdFont-Regular.otf new file mode 100644 index 0000000..8e669b6 Binary files /dev/null and b/assets/fonts/GeistMonoNerdFont-Regular.otf differ diff --git a/assets/fonts/GeistMonoNerdFontMono-Regular.otf b/assets/fonts/GeistMonoNerdFontMono-Regular.otf new file mode 100644 index 0000000..5297c37 Binary files /dev/null and b/assets/fonts/GeistMonoNerdFontMono-Regular.otf differ diff --git a/blog.html b/blog.html index 434d6cf..082b409 100644 --- a/blog.html +++ b/blog.html @@ -11,9 +11,9 @@ backlink: false {% assign category = post.category %} {% if category == 'blog' %}
  • -

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

    +

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

  • {% endif %} {% endfor %} -
    \ No newline at end of file +
    diff --git a/index.html b/index.html index 806c338..96f89c8 100644 --- a/index.html +++ b/index.html @@ -1,16 +1,12 @@ --- layout: default -title: andrewconl.in permalink: / -backlink: false --- -This site is designed to be kept as simple as possible.
    -It is pure HTML/CSS [*], which keeps things small, fast and accessible.
    -* I use a self-hosted instance of umami for analytics. It respects do-not-track signals.
    ---
    -email: andrew@andrewconl.in
    -masto: andrwcnln@mastodon.scot
    -github: @andrwcnln
    ---
    -rss
    -
    \ No newline at end of file + +β€œMan is said to be a reasoning animal. I do not know why he has not been defined as an affective or feeling animal. Perhaps that which differentiates him from other animals is feeling rather than reason. More often I have seen a cat reason than laugh or weep. Perhaps it weeps or laughs inwardly β€” but then perhaps, also inwardly, the crab resolves equations of the second degree.”
    +― Miguel de Unamuno, Tragic Sense of Life

    +Email: andrew@andrewconl.in
    +Mastodon: andrwcnln@mastodon.scot
    +GitHub: @andrwcnln
    +RSS: /feed.xml
    +
    diff --git a/meta.html b/meta.html new file mode 100644 index 0000000..4fde465 --- /dev/null +++ b/meta.html @@ -0,0 +1,9 @@ +--- +layout: default +title: meta +permalink: /meta +--- + +

    Meta

    +Both the Sans Serif and Monospace fonts used on this site are Geist, by Vercel +
    diff --git a/til.html b/til.html index efa98fb..f87dde4 100644 --- a/til.html +++ b/til.html @@ -10,9 +10,9 @@ backlink: false {% assign category = post.category %} {% if category == 'til' %}
  • -

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

    +

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

  • {% endif %} {% endfor %} -
    \ No newline at end of file +
    diff --git a/weeklinks.html b/weeklinks.html index 6b28206..70a6cfc 100644 --- a/weeklinks.html +++ b/weeklinks.html @@ -11,9 +11,9 @@ backlink: false {% assign category = post.category %} {% if category == 'weeklinks' %}
  • -

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

    +

    {{ post.date | date: "%Y-%m-%d" }} // {{ post.title }}

  • {% endif %} {% endfor %} -
    \ No newline at end of file +