From 54ed5681fb371656589397a18674d911d2ebc977 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 11 Feb 2017 16:14:20 +0000 Subject: [PATCH] restructure theme and about page --- content/pages/about.html | 18 +++++++++++------- content/pages/contact.html | 27 +++++++++++++++++++++++++++ content/pages/contact.md | 13 ------------- content/pages/homepage.html | 2 +- theme/static/src/scss/functional.scss | 4 ++++ theme/static/src/scss/index.scss | 6 ++++++ 6 files changed, 49 insertions(+), 21 deletions(-) create mode 100644 content/pages/contact.html delete mode 100644 content/pages/contact.md diff --git a/content/pages/about.html b/content/pages/about.html index 0a72404..fabc2d2 100644 --- a/content/pages/about.html +++ b/content/pages/about.html @@ -1,5 +1,5 @@ - + @@ -15,7 +15,7 @@
-

Personal Data

+

Personal Data

In the interest of privacy, there's very little personal information here.

@@ -24,19 +24,18 @@

-
+

Accounts

These are all the accounts I run, all to do with various things. Take a look!

-
{% for key, account in ACCOUNTS.items() %}
-
+
+ +
diff --git a/content/pages/contact.html b/content/pages/contact.html new file mode 100644 index 0000000..4b5de2c --- /dev/null +++ b/content/pages/contact.html @@ -0,0 +1,27 @@ + + + + + +
+
+

+ The fastest way to contact me is through twitter. Just tag me or send me a message and I'll respond as soon as possible! +

+
+
+
+
+

Need something more formal?

+

+ If you need to contact me in a more formal capacity, send me an email! I aim to respond to all emails within 3 days. +

+
+
+
+ +
+ diff --git a/content/pages/contact.md b/content/pages/contact.md deleted file mode 100644 index 7e1c60e..0000000 --- a/content/pages/contact.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Contact Me ---- - -The fastest way to contact me is through twitter. Just tag me or send me a message and I'll respond as soon as possible! - -View Twitter - -## Need something more formal? - -If you need to contact me in a more formal capacity, send me an email! I aim to respond to all emails within 3 days. - -Send me an email! diff --git a/content/pages/homepage.html b/content/pages/homepage.html index d0069ca..007dc67 100644 --- a/content/pages/homepage.html +++ b/content/pages/homepage.html @@ -25,7 +25,7 @@

I'm Jake. A software engineer with a passion for security and privacy. This is my website, a home for my projects, blog posts, and anything else for that matter.

- Contact + More Info
diff --git a/theme/static/src/scss/functional.scss b/theme/static/src/scss/functional.scss index 58c9665..3d4f6a2 100644 --- a/theme/static/src/scss/functional.scss +++ b/theme/static/src/scss/functional.scss @@ -16,3 +16,7 @@ padding: 0 $grid-gutter-width / 2; } + +a.no-underline:hover { + text-decoration: inherit; +} diff --git a/theme/static/src/scss/index.scss b/theme/static/src/scss/index.scss index aa9feec..48f3735 100644 --- a/theme/static/src/scss/index.scss +++ b/theme/static/src/scss/index.scss @@ -114,3 +114,9 @@ header#header { .protected-mailto { cursor: pointer; } + +.service-box.account { + a:hover { + color: $brand-orange-dark; + } +}