diff options
-rw-r--r-- | README.md | 30 | ||||
-rw-r--r-- | site/index.htm | 61 |
2 files changed, 57 insertions, 34 deletions
diff --git a/README.md b/README.md index 379aac6..e20aa33 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,14 @@ I host as a static site on kinsta. ### Log +#### 03/25/24 +Every page has been moved to its own directory so that this +site can use url slugs without relying on a framework or web +server. Now the url of every page looks much cleaner. There +is also an error page now so when someone tries going to a +page that doesn't exist they're sent to an error page and +then redirected to the main page after a few seconds. + #### 02/04/24 Decided to create a page for the various WinForms that I've made throughout my classes in college. I also changed this @@ -14,26 +22,26 @@ site's theme quite a bit since the last log. #### 12/31/23 Just got the domain name porterswanstrom.com and created two A records, one for w.porterswanstrom.com and the other for -dev.porterswanstrom.com. I've setup dev.porterswanstrom.com to -auto-redeploy every time I make a change to the website so that -I can test the website before deploying to w.porterswanstrom.com. +dev.porterswanstrom.com which is setup to auto-redeploy +everytime a change is made to this site so that the changes +can be tested before being deployed to w.porterswanstrom.com. #### 12/18/23 -I figured out how to get the font size to work right on -mobile, so now my website looks great on mobile. +Figured out how to get the spacing and font size to work +right on mobile, so now this site looks great on mobile. #### 12/13/23 -Today I designed a light mode for the website and added css -to set the theme depending on whether someone is using dark +Designed a light mode for this site and added css to +set the theme depending on whether someone is using dark mode or light mode. #### 12/10/23 -Finally added some color to the website, it's currently +Finally added some color to this site, it's currently dark mode with green links, a lot of redish orange headers, and a few purple headers. #### 12/09/23 -Just started my website on the 6th and so far the only +Just started this site on the 6th and so far the only pages are the homepage, projects page, and about page. -I also started to add some basic css and successfully got -a working header and footer. +I also started to add some basic css and successfully +got a working header and footer. diff --git a/site/index.htm b/site/index.htm index 3fc3ce8..4db67ea 100644 --- a/site/index.htm +++ b/site/index.htm @@ -1,5 +1,5 @@ <!DOCTYPE html><html lang="en"><head> -<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> +<meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <link rel="stylesheet" type="text/css" href="/css/m.css" /> <title>Porter Swanstrom</title></head><body><div class="main"><div class="head"> @@ -12,45 +12,60 @@ </div><div class="body"> <h2>About</h2> -<p> I started this site for fun but it was also a great excuse -to learn html, css, and git.</p> +<p> I started this site for fun but it was also a great +excuse to learn html, css, and git.</p> <h2>Logs</h2> +<h3>03/25/24</h3> +<p>Every page has been moved to its own directory so that +this site can use url slugs without relying on a framework +or web server. Now the url of every page looks much cleaner. +There is also an <a href="/err">error</a> page now so when +someone tries going to a page that doesn't exist like +<a href="/nonexistent">this</a> one, they're sent to an +error page and then redirected to the <a href="/m">main</a> +page after a few seconds.</p> + <h3>02/04/24</h3> -<p>Decided to create a page for the various <a href="/forms">WinForms</a> -that I've made throughout my classes in college. I also changed this site's -theme quite a bit since the last log.</p> +<p>Decided to create a page for the various <a href="/forms"> +WinForms</a> that I've made throughout my classes in college. +I also changed this site's theme quite a bit since the last +log.</p> <h3>12/31/23</h3> -<p>Just got the domain name porterswanstrom.com and created two -A records, one for w.porterswanstrom.com and the other for -dev.porterswanstrom.com which is setup to auto-redeploy +<p>Just got the domain name porterswanstrom.com and created +two A records, one for w.porterswanstrom.com and the other +for dev.porterswanstrom.com which is setup to auto-redeploy everytime a change is made to this site so that the changes -can be tested before being deployed to w.porterswanstrom.com.</p> +can be tested before being deployed to w.porterswanstrom.com. +</p> <h3>12/18/23</h3> -<p>Figured out how to get the spacing and font size to work right -on mobile, so now this site looks great on mobile.</p> +<p>Figured out how to get the spacing and font size to work +right on mobile, so now this site looks great on mobile.</p> <h3>12/13/23</h3> -<p>Designed a light mode for this site and added css to set the -theme depending on whether someone is using dark mode or light mode.</p> +<p>Designed a light mode for this site and added css to set +the theme depending on whether someone is using dark mode or +light mode.</p> <h3>12/10/23</h3> -<p>Finally added some color to this site, it's currently dark mode with -green links, a lot of redish orange headers, and a few purple headers.</p> +<p>Finally added some color to this site, it's currently +dark mode with green links, a lot of redish orange headers, +and a few purple headers.</p> <h3>12/09/23</h3> -<p>Just started this site on the 6th and so far the only pages are the -<a href="/m">main</a> page, <a href="/proj">projects</a> page, -and <a href="/site">about</a> page. I also started to add some basic css -and successfully got a working header and footer.</p> +<p>Just started this site on the 6th and so far the only +pages are the <a href="/m">main</a> page, <a href="/proj"> +projects</a> page, and <a href="/site">about</a> page. I +also started to add some basic css and successfully got a +working header and footer.</p> <h2>Source</h2> -<p>The source code is <a href="http://gh.porterswanstrom.com/www">here</a> -and you can get it with:<div class="sh"> -git clone http://github.com/porterswanstrom/www</div></p> +<p>The source code is <a href="http://gh.porterswanstrom.com/www"> +here</a> and you can get it with:</p><div class="sh"> +git clone http://github.com/porterswanstrom/www</div> </div><div class="foot"> |