diff --git a/Changelog.md b/Changelog.md index a387391..c06596d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,4 +3,5 @@ This document attempts to describe the history of changes to the Simon Sarasova Website codebase. Small and insignificant changes may not be included in this log. +* Created the Blog Archive page. - *Simon Sarasova* * Updated the Links memo and page. - *Simon Sarasova* \ No newline at end of file diff --git a/Contributors.md b/Contributors.md index 5049325..08fe1cb 100644 --- a/Contributors.md +++ b/Contributors.md @@ -4,4 +4,4 @@ This document describes the contributors to the Simon Sarasova Website codebase. Name | Date Of First Commit | Number Of Commits --- | --- | --- -Simon Sarasova | May 1, 2024 | 3 \ No newline at end of file +Simon Sarasova | May 1, 2024 | 4 \ No newline at end of file diff --git a/main.go b/main.go index 190b29c..4a08fe0 100644 --- a/main.go +++ b/main.go @@ -130,6 +130,7 @@ func main(){ pageFilenamesList := []string{ "index.html", "blog.html", + "blog-archive.html", "contact.html", "donate.html", "keys.html", diff --git a/resources/pages/blog-archive.html b/resources/pages/blog-archive.html new file mode 100644 index 0000000..8e896c1 --- /dev/null +++ b/resources/pages/blog-archive.html @@ -0,0 +1,70 @@ + + + + + + + + +Simon Sarasova - Blog + + + + + + + +
+ +{{.CodeSnippet_Header}} + +
+
+ +

Blog Archive

+ +
+ +
+ +

This page contains my archived blog posts.

+ +

These are posts which I do not want to promote widely anymore.

+ +
+ +
+ +
+ +

May 1st, 2024

+

-

+Beauty Extinction Is Unlikely + +
+ +
+ +

February 18th, 2024

+

-

+Why Race Extinction Matters + +
+ +
+ +

June 13, 2023

+

-

+Hello World + +
+ + +
+
+ +
+ + + + diff --git a/resources/pages/blog.html b/resources/pages/blog.html index b50b4de..29386cb 100644 --- a/resources/pages/blog.html +++ b/resources/pages/blog.html @@ -25,30 +25,11 @@
-
+

No blog posts exist yet.

-

May 1st, 2024

-

-

-Beauty Extinction Is Unlikely - -
- -
- -

February 18th, 2024

-

-

-Why Race Extinction Matters - -
- -
- -

June 13, 2023

-

-

-Hello World - -
+
+View Archived Posts diff --git a/resources/pages/blog/hello-world.html b/resources/pages/blog/hello-world.html index bdd0e0a..411dab6 100644 --- a/resources/pages/blog/hello-world.html +++ b/resources/pages/blog/hello-world.html @@ -27,7 +27,7 @@

Disclaimer:

-

I no longer agree with some of the views expressed in this post.

+

I no longer agree with some of the ideas expressed in this post.

Human race extinctions caused by technology are not always tragic.

Humanity is a technological species. We are not natural in the same way that other animals are.

You can read my updated thoughts in this blog post: Why Race Extinction Matters

diff --git a/resources/style.css b/resources/style.css index 0f1e75d..d70922a 100644 --- a/resources/style.css +++ b/resources/style.css @@ -340,6 +340,21 @@ p{ } +.blogArchiveLink{ + + color:black; + + font-size:1.4em; + + margin-top:.4em; + margin-bottom:.4em; +} + +.blogArchiveLink:hover{ + color:red; +} + + .separator{ width:90%; }