diff --git a/README.md b/README.md
index 23ca14f..1eb73a9 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
Disseminate
@@ -18,8 +18,11 @@ It stems from an issue i've come across, where no blogging platform i could find
## State of Project
-Disseminate is a work-in-progress. While the code is there, it is not recommended to run this in production yet.
+Disseminate is a work-in-progress, although Disseminate is in a more than usable state.
+## Blogs using Disseminate
+
+* [My own :)](https://penhub.nl)
## Opening an issue.
Registrations are open again! Unfortunately however, i have to manually accept each account.
@@ -34,9 +37,10 @@ to get your account accepted.
## To-do
-- [x] Server-side parsing.
-- [x] Docker build system.
-- [x] Proper metadata (title, date etc).
-- [x] **Automated** prebuilt docker images.
-- [ ] Caching for faster load times.
-- [ ] Alternative frontend (solution)? (EJS is pretty primitive!)
\ No newline at end of file
+- [x] [HIGH] Server-side parsing.
+- [x] [MEDIUM] Docker build system.
+- [x] [MEDIUM] Proper metadata (title, date etc).
+- [x] [MEDIUM] **Automated** prebuilt docker images.
+- [ ] [LOW] Caching for faster load times.
+- [ ] [LOW] Interface for blog management (web ui?).
+- [ ] [LOW] Alternative frontend (solution)? (EJS is pretty primitive!)
diff --git a/src/types/Config.ts b/src/types/Config.ts
index fddb531..a040a4f 100644
--- a/src/types/Config.ts
+++ b/src/types/Config.ts
@@ -4,4 +4,5 @@ export interface Branding {
export default interface Config {
branding: Branding;
theme: string;
+ themeOpts: any;
}
diff --git a/src/views/themes/default/global-style.ejs b/src/views/themes/default/global-style.ejs
index ad8b677..5d55a9b 100644
--- a/src/views/themes/default/global-style.ejs
+++ b/src/views/themes/default/global-style.ejs
@@ -1,10 +1,23 @@