diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2022-10-06 21:27:15 -0700 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2022-10-06 21:27:15 -0700 |
commit | c0a94e55c4312a0c62f9bf5c0a4d8b7ae0903ac7 (patch) | |
tree | e15847d629ff4bc4869af3ccd72c80ddf05e268f | |
parent | 882aac61fe145da641b19c3bedd6a212e45ad7f5 (diff) |
updated homepage
-rw-r--r-- | index.html | 42 | ||||
-rwxr-xr-x | updatesite.command | 9 |
2 files changed, 30 insertions, 21 deletions
@@ -1,21 +1,21 @@ -<head>
- <link rel="stylesheet" href="style.css">
-</head>
-<body>
- <div class="background">
- <div class="contentpane">
- <h1>Hello, I'm Kai!</h1>
- <p>This is my Web site for cool things, like my programming, music, writing, photography, and anything else I think of.
- I'm a social sciences student at UVic, though I'm also passionate about technology. I also have another website at
- https://www.kaistevenson.com, which takes itself a little more seriously.
- </p>
- <a class="pagelink" href="writing/index.html">Writing../</a>
- <a class="pagelink" href="photography/index.html">Photography../</a>
- <a class="pagelink" href="music/index.html">Music../</a>
- <a class="pagelink" href="programming/index.html">Programming../</a>
- <a class="pagelink" href="etc/index.html">Etc../</a>
-
- <img style="padding: 50px; display: block; margin: auto;" src="roly-saynotoweb3.gif">
- </div>
- </div>
-</body>
\ No newline at end of file +<head> + <link rel="stylesheet" href="style.css"> +</head> +<body> + <div class="background"> + <div class="contentpane"> + <h1>Hello, I'm Kai!</h1> + <p>This is my Web site for cool things, like my programming, music, writing, photography, and anything else I think of. + I'm a social sciences student at UVic, though I'm also passionate about technology. I also have another website at + https://www.kaistevenson.com, which takes itself a little more seriously. You can also email me at kai@kaistevenson.com. + </p> + <a class="pagelink" href="writing/index.html">Writing../</a> + <a class="pagelink" href="photography/index.html">Photography../</a> + <a class="pagelink" href="music/index.html">Music../</a> + <a class="pagelink" href="programming/index.html">Programming../</a> + <a class="pagelink" href="etc/index.html">Etc../</a> + + <img style="padding: 50px; display: block; margin: auto;" src="roly-saynotoweb3.gif"> + </div> + </div> +</body> diff --git a/updatesite.command b/updatesite.command new file mode 100755 index 0000000..8fe5a3e --- /dev/null +++ b/updatesite.command @@ -0,0 +1,9 @@ +if [ $# -eq 0 ]; then + exit 0 +fi + + +rsync -avzP --rsh=ssh ~/Web/aetherdestroyer root@aetherdestroyer.net:/var/www/ +git add . +git commit -S -m "$1" +git push origin main |