diff --git a/LICENSE b/LICENSE
index 2f3ee86..6251219 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,7 @@
The MIT License (MIT)
Copyright (c) 2014 Spencer Lyon
+Copyright (c) 2022 ch0ccyra1n
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/content/_index.md b/content/_index.md
index 98e8bf0..1e63451 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -20,4 +20,3 @@ Hi, I'm ch0ccyra1n and this is my website! Thanks for stopping by!
- {{< rawhtml >}}My Mastodon[?]{{< /rawhtml >}}, where I post semi-frequently.
- {{< rawhtml >}}Subscribe via RSS[?]{{< /rawhtml >}}
---- ---
\ No newline at end of file
diff --git a/content/posts/_index.md b/content/posts/_index.md
index 962b764..d7a9270 100644
--- a/content/posts/_index.md
+++ b/content/posts/_index.md
@@ -1,3 +1,60 @@
---
title: "Posts"
----
\ No newline at end of file
+---
+
+My thoughts and opinions on whatever.
+
+{{< rawhtml >}}
+
+
+
+
+
+
+
+{{< /rawhtml >}}
\ No newline at end of file
diff --git a/content/posts/welcome.md b/content/posts/welcome.md
index a4767da..5b6ca23 100644
--- a/content/posts/welcome.md
+++ b/content/posts/welcome.md
@@ -8,4 +8,6 @@ tags:
Hello there!
-I made this blog to talk about pretty much whatever I feel like in long form. Okay, bye!
\ No newline at end of file
+I made this blog to talk about pretty much whatever I feel like in long form.
+
+Okay, bye!
\ No newline at end of file
diff --git a/content/posts/why-i-dont-like-proprietary-software.md b/content/posts/why-i-dont-like-proprietary-software.md
new file mode 100644
index 0000000..0e30202
--- /dev/null
+++ b/content/posts/why-i-dont-like-proprietary-software.md
@@ -0,0 +1,20 @@
+---
+title: "Why I Don't Like Proprietary Software (as an Anarchist)"
+date: 2022-08-08T4:50:00-07:00
+draft: true
+tags:
+ - computers
+ - software freedom
+ - anarchism
+ - goolag
+---
+
+> Why aren't you using normal software?
+
+*Alright, so this article is mainly meant for the people at uni who glance over at my laptop screen and wonder why I'm not using a "normal" operating system.*
+
+*In short, I believe that proprietary software is an existential threat to our individual autonomy.*
+
+*For the long answer well, you'll have to actually **read** it.*
+
+What do I mean when I say that proprietary software is an existential threat to our individual autonomy? To start with, there are a significant amount of incentives for proprietary software developers to do things which harm your autonomy, such as operating systems which prevent the user from installing apps other than from a single location. Since there is no way to excercise [your freedoms](https://www.gnu.org/philosophy/free-sw.html#four-freedoms), it is impossible to verify that the software isn't doing injustice to you, such as with [period tracking apps providing data to tech giants without user consent](https://www.cnn.com/2022/06/16/opinions/period-trackers-app-roe-abortion-ranney-yao/index.html).
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index a96cac1..e369a9f 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1 +1,2 @@
+
Copyright (c) {{ now.Format "2006"}} ch0ccyra1n
\ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..570f97b
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,9 @@
+
+
+
+
+
+ {{ $title := print .Site.Title " | " .Title }}
+ {{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
+ {{ $title }}
+
\ No newline at end of file
diff --git a/static/css/custom.css b/static/css/custom.css
new file mode 100644
index 0000000..347fbd0
--- /dev/null
+++ b/static/css/custom.css
@@ -0,0 +1,31 @@
+blockquote {
+ color: green;
+ font-style: oblique;
+}
+
+/* For search bar */
+.search {
+ color: gray;
+ width: 400px;
+ max-width: 85vw;
+ position: relative;
+ margin: 0.5rem auto 1.2rem;
+ display: flex;
+}
+
+#search {
+ padding: 0.7rem 1rem;
+ border-radius: 5px;
+ width: 100%;
+}
+
+#clear-search {
+ position: absolute;
+ right: 4px;
+ top: 5px;
+ height: 30px;
+ width: 30px;
+ color: #888;
+ cursor: pointer;
+ transition: color 180ms ease-in-out;
+}
\ No newline at end of file
diff --git a/static/favicon.ico b/static/favicon.ico
index 3669333..4d2db95 100644
Binary files a/static/favicon.ico and b/static/favicon.ico differ