diff options
author | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2021-07-21 05:27:09 -0500 |
---|---|---|
committer | flu0r1ne <flu0r1ne@flu0r1ne.net> | 2021-07-21 05:27:09 -0500 |
commit | b880246ca5a0143f90ee3484f775ad9e97a2a55b (patch) | |
tree | fc2c863a40c072f8de8ff650473665d93d04042d | |
parent | a62d1ee788f3ea7c27cb1cea9bedfd7d8d21d555 (diff) | |
download | homepage-b880246ca5a0143f90ee3484f775ad9e97a2a55b.tar.xz homepage-b880246ca5a0143f90ee3484f775ad9e97a2a55b.zip |
Add additional info to README, fix errors
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,11 +1,11 @@ Homepage ======== -This is the source for my [personal webiste](https://www.flu0r1ne.net). It's effectively a static site. +This is the source for my [personal website](https://www.flu0r1ne.net). It's effectively a static site. -It's written using the `next.js` framework which a SSO rendering system built on `react` and `typescript`. `nginx` reverse proxies and caches it. `next.js` overkill for a small, static project. But, the code is lean and clean. If I want to do something fancy in the future, I have all the tools. +It's written using the `next.js` framework which is a SSO rendering system built on `react` and `typescript`. `nginx` reverse proxies and caches it. `next.js` is overkill for a small, static project. But, the code is lean and clean. If I want to do something fancy in the future, I have all the tools. -I did all the theming: simple, readable, clean, and monospaced. I also wrote a trivial CMS based on markdown and JSON for metadata. +I did all the theming: simple, readable, clean, and monospaced. I also wrote a trivial CMS based on markdown and JSON. It loads the posts in chronological order and stores relevant metadata. ``` ├── components REUSABLE COMPONENTS @@ -16,4 +16,4 @@ I did all the theming: simple, readable, clean, and monospaced. I also wrote a t ├── styles PRELOADED STYLE ├── templates PAGE TEMPLATES └── utils UTILS (MOSTLY LOADING HELPERS) -```
\ No newline at end of file +``` |