From eeb5b4951be8ae7ae6288c6ced065cbc84e47be9 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sat, 21 Dec 2019 23:53:36 -0500 Subject: [PATCH] refactor: split home vs thoughts, add nav bar Previously, the home was the thoughts page. Now there is a Home and a Thoughts page, which aligns better with potential plans to actually put something of use on the home page. --- Makefile | 2 +- index.html | 24 ++++++++---------------- style.css | 14 ++++++++++++++ thoughts.html | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+), 17 deletions(-) create mode 100644 thoughts.html diff --git a/Makefile b/Makefile index a2148cc..6b27c22 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ .PHONY: install install: - cp -f index.html style.css /srv/http/ + cp -f *.html style.css /srv/http/ diff --git a/index.html b/index.html index 5041559..6d07ddb 100644 --- a/index.html +++ b/index.html @@ -9,23 +9,15 @@
-

/home/akarle

-

------------

-

A collection of thoughts.

+ -

Dec. 19, 2019

-

- Toying with the thought of starting a website/blog. -

-

- Exploring my hosting options and pleasantly surprised that - Fastmail has free static site hosting! -

-

- Inspired by Jeff Huang's article on websites - Designed to Last and - a general desire for a simpler web. -

+

/home/akarle

+

------------

+ +

Coming Soon...

diff --git a/style.css b/style.css index 1f7d81c..8e93940 100644 --- a/style.css +++ b/style.css @@ -16,3 +16,17 @@ body { .new-post { margin-top: 80px; } + +#nav { + text-align: center; +} + +#nav > a { + color: dimgray; + text-decoration: none; +} + +h1 { + margin-top: 0px; + margin-bottom: 0px; +} diff --git a/thoughts.html b/thoughts.html new file mode 100644 index 0000000..a985b57 --- /dev/null +++ b/thoughts.html @@ -0,0 +1,37 @@ + + + + + alex.karle.co + + + + + +
+ + +

/home/akarle

+

------------

+ +

A collection of thoughts.

+ +

Dec. 19, 2019

+

+ Toying with the thought of starting a website/blog. +

+

+ Exploring my hosting options and pleasantly surprised that + Fastmail has free static site hosting! +

+

+ Inspired by Jeff Huang's article on websites + Designed to Last and + a general desire for a simpler web. +

+
+ + -- libgit2 1.1.1