From a01cb3194c778e8564ac3374800ce48550f22d53 Mon Sep 17 00:00:00 2001 From: Nate B Date: Sun, 15 Nov 2020 05:24:43 -0700 Subject: [PATCH] 11-15-20_05:24:43 --- _layouts/default.html | 49 +++++++++++++++++++++++++++++++++++++++++++ _layouts/post.html | 2 +- authorblurb.css | 6 ++++++ 3 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 _layouts/default.html create mode 100644 authorblurb.css diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..3d77696 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,49 @@ + + + + + + + + + +{% seo %} + + + + +
+
+ +

{{ site.title | default: site.github.repository_name }}

+
+

{{ site.description | default: site.github.project_tagline }}

+ +
+ {% if site.show_downloads %} + Download as .zip + Download as .tar.gz + {% endif %} + View on GitHub +
+
+
+ +
+
+ {{ content }} +
+
+ + {% if site.google_analytics %} + + {% endif %} + + diff --git a/_layouts/post.html b/_layouts/post.html index a9318b4..11547c2 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,7 +1,7 @@ --- layout: default --- - + {{ page.date | date: "%-d %B %Y" }}

{{ page.title }}

diff --git a/authorblurb.css b/authorblurb.css new file mode 100644 index 0000000..d9a5990 --- /dev/null +++ b/authorblurb.css @@ -0,0 +1,6 @@ +.author-bio { + width: 50%; + float: left; + border-radius: 12px; + border: 2px #0066ff; +}