From 41924391280f3ab06396dc9f88a2e4117904f853 Mon Sep 17 00:00:00 2001 From: triethyl Date: Mon, 29 Sep 2025 13:53:48 -0400 Subject: made site --- site/content/_index.md | 14 ++++++++++++++ site/content/about-this-site.md | 9 +++++++++ site/content/posts/first.md | 14 ++++++++++++++ site/content/posts/fourth.md | 7 +++++++ site/content/posts/my-first-post.md | 11 ----------- site/content/posts/second.md | 8 ++++++++ site/content/posts/third.md | 8 ++++++++ 7 files changed, 60 insertions(+), 11 deletions(-) create mode 100644 site/content/_index.md create mode 100644 site/content/about-this-site.md create mode 100644 site/content/posts/first.md create mode 100644 site/content/posts/fourth.md delete mode 100644 site/content/posts/my-first-post.md create mode 100644 site/content/posts/second.md create mode 100644 site/content/posts/third.md (limited to 'site/content') diff --git a/site/content/_index.md b/site/content/_index.md new file mode 100644 index 0000000..e09c08c --- /dev/null +++ b/site/content/_index.md @@ -0,0 +1,14 @@ +# Welcome to my site! + +I'm Lucas, but I go by culsans online. I like computer science, FPV drone flying, and scuba diving. + +[About this site.](./about-this-site) + +languages: +- Nix +- Python +- Lua +- Go + +learning: +- C diff --git a/site/content/about-this-site.md b/site/content/about-this-site.md new file mode 100644 index 0000000..cc5f77f --- /dev/null +++ b/site/content/about-this-site.md @@ -0,0 +1,9 @@ ++++ +draft = false +type = 'page' +title = 'About this site' ++++ + +This site was made with the Hugo static site generator with my own custom theme. + +All CSS and HTML was written by me except the animated background, which was drawn by me and programmed by an AI because I don't have the time or will to learn JS. I generally dislike it but it's definitely useful sometimes. diff --git a/site/content/posts/first.md b/site/content/posts/first.md new file mode 100644 index 0000000..fcfff8e --- /dev/null +++ b/site/content/posts/first.md @@ -0,0 +1,14 @@ ++++ +date = '2025-09-11T12:59:35-04:00' +draft = true +title = 'My First Post' +tags = ['first'] ++++ + +hello this is a post **bold** + +this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line this is a really long line + +- item1 +- item2 +- item3 diff --git a/site/content/posts/fourth.md b/site/content/posts/fourth.md new file mode 100644 index 0000000..8895d3a --- /dev/null +++ b/site/content/posts/fourth.md @@ -0,0 +1,7 @@ ++++ +date = '2025-09-12T10:57:10-04:00' +draft = true +title = 'Fourth' ++++ + +this is my fourth post diff --git a/site/content/posts/my-first-post.md b/site/content/posts/my-first-post.md deleted file mode 100644 index 8b8be8e..0000000 --- a/site/content/posts/my-first-post.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -date = '2025-09-11T12:59:35-04:00' -draft = true -title = 'My First Post' -+++ - -hello this is a post **bold** - -- item1 -- item2 -- item3 diff --git a/site/content/posts/second.md b/site/content/posts/second.md new file mode 100644 index 0000000..1aea261 --- /dev/null +++ b/site/content/posts/second.md @@ -0,0 +1,8 @@ ++++ +date = '2025-09-12T10:56:59-04:00' +draft = true +title = 'Second' +tags = ['second'] ++++ + +this is my second post diff --git a/site/content/posts/third.md b/site/content/posts/third.md new file mode 100644 index 0000000..37b9b2e --- /dev/null +++ b/site/content/posts/third.md @@ -0,0 +1,8 @@ ++++ +date = '2025-09-12T10:57:06-04:00' +draft = true +title = 'Third' +tags = ['third'] ++++ + +this is my third post -- cgit v1.2.3