Created the Blog Archive page.

This commit is contained in:
Simon Sarasova 2024-06-14 10:01:11 +00:00
parent 1d0ec78237
commit 990551e7d3
No known key found for this signature in database
GPG key ID: D53A231858DFA370
7 changed files with 92 additions and 24 deletions

View file

@ -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*

View file

@ -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
Simon Sarasova | May 1, 2024 | 4

View file

@ -130,6 +130,7 @@ func main(){
pageFilenamesList := []string{
"index.html",
"blog.html",
"blog-archive.html",
"contact.html",
"donate.html",
"keys.html",

View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Simon Sarasova - Blog</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class = "pageDiv">
{{.CodeSnippet_Header}}
<div class = "pageContentBox">
<div class = "pageContent">
<h1> Blog Archive </h1>
<br class = "thinlinebreak">
<hr class = "separator">
<p>This page contains my archived blog posts.</p>
<p>These are posts which I do not want to promote widely anymore.</p>
<hr class = "separator">
<br class = "linebreak">
<div class = "blogPostRow">
<p>May 1st, 2024</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/beauty-extinction-is-unlikely.html">Beauty Extinction Is Unlikely</a>
</div>
<div class = "blogPostRow">
<p>February 18th, 2024</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/why-race-extinction-matters.html">Why Race Extinction Matters</a>
</div>
<div class = "blogPostRow">
<p>June 13, 2023</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/hello-world.html">Hello World</a>
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -25,30 +25,11 @@
<br class = "thinlinebreak">
<div class = "blogPostRow">
<p><b>No blog posts exist yet.</b></p>
<p>May 1st, 2024</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/beauty-extinction-is-unlikely.html">Beauty Extinction Is Unlikely</a>
</div>
<div class = "blogPostRow">
<p>February 18th, 2024</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/why-race-extinction-matters.html">Why Race Extinction Matters</a>
</div>
<div class = "blogPostRow">
<p>June 13, 2023</p>
<p class = "blogLinkHyphen">-</p>
<a class = "blogLink" href="./blog/hello-world.html">Hello World</a>
</div>
<br class = "thinlinebreak">
<a class = "blogArchiveLink" href="./blog-archive.html" target=”_blank”>View Archived Posts</a>
</div>
</div>

View file

@ -27,7 +27,7 @@
<h2>Disclaimer:</h2>
<p>I no longer agree with some of the views expressed in this post.</p>
<p>I no longer agree with some of the ideas expressed in this post.</p>
<p>Human race extinctions caused by technology are not always tragic.</p>
<p>Humanity is a technological species. We are not natural in the same way that other animals are.</p>
<p>You can read my updated thoughts in this blog post: <a class = "genericLink" href = "./why-race-extinction-matters.html">Why Race Extinction Matters</a></p>

View file

@ -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%;
}