diff --git a/portfolio/about.rst b/portfolio/about.rst
index 99af9e2..eb58f86 100644
--- a/portfolio/about.rst
+++ b/portfolio/about.rst
@@ -1,5 +1,6 @@
---
title: About
+logosub: About me
---
Nullam imperdiet sodales orci vitae molestie. Nunc quam orci, pharetra a
rhoncus vitae, eleifend id felis. Suspendisse potenti. Etiam vitae urna orci.
diff --git a/portfolio/contact.markdown b/portfolio/contact.markdown
index 2f3fa8b..eae8a1d 100644
--- a/portfolio/contact.markdown
+++ b/portfolio/contact.markdown
@@ -1,5 +1,6 @@
---
title: Contact
+logosub: Not very social
---
I usually listen to frequency 7.442 MHz, you can try to contact me there.
diff --git a/portfolio/css/custom.css b/portfolio/css/custom.css
new file mode 100644
index 0000000..b0f4f9d
--- /dev/null
+++ b/portfolio/css/custom.css
@@ -0,0 +1,9 @@
+.logo-sub {
+ font-size: 0.8rem;
+}
+
+footer {
+ font-size: 0.7rem;
+ text-align: center;
+ padding: 15px 10px;
+}
\ No newline at end of file
diff --git a/portfolio/index.html b/portfolio/index.html
index e7d892d..4663970 100644
--- a/portfolio/index.html
+++ b/portfolio/index.html
@@ -1,5 +1,6 @@
---
title: Home
+logosub: Personal weblog
---
diff --git a/portfolio/pages/en/plamo/gundam/2025-05-02-kawasaki-zaku-ii.md b/portfolio/pages/en/plamo/gundam/2025-05-02-kawasaki-zaku-ii.md
index 5e51a62..b029c3d 100644
--- a/portfolio/pages/en/plamo/gundam/2025-05-02-kawasaki-zaku-ii.md
+++ b/portfolio/pages/en/plamo/gundam/2025-05-02-kawasaki-zaku-ii.md
@@ -1,4 +1,5 @@
---
+logosub: Plamo
title: Kawasaki Zaku II
page: kawasaki-zaku-ii
model_name: MS-06 Zaku II
diff --git a/portfolio/pages/en/plamo/gundam/2025-10-18-smc-2025-gundam.md b/portfolio/pages/en/plamo/gundam/2025-10-18-smc-2025-gundam.md
index 6a932f0..ad1abb9 100644
--- a/portfolio/pages/en/plamo/gundam/2025-10-18-smc-2025-gundam.md
+++ b/portfolio/pages/en/plamo/gundam/2025-10-18-smc-2025-gundam.md
@@ -1,4 +1,5 @@
---
+logosub: Plamo
title: SMC Gundam
page: smc-2025-gundam
model_name: RX-178 Mk.II
diff --git a/portfolio/site.hs b/portfolio/site.hs
index a5a7ef3..3b47059 100644
--- a/portfolio/site.hs
+++ b/portfolio/site.hs
@@ -58,8 +58,9 @@ main = hakyll $ do
compile $ do
posts <- recentFirst =<< loadAll "pages/en/plamo/gundam/*"
let plamoCtx =
- listField "posts" postCtx (return posts) `mappend`
- constField "title" "Plamo" `mappend`
+ listField "posts" postCtx (return posts) `mappend`
+ constField "title" "Plamo" `mappend`
+ constField "logosub" "Plamo enthousiast" `mappend`
defaultContext
makeItem ""
diff --git a/portfolio/templates/default.html b/portfolio/templates/default.html
index c0d943d..54aa845 100644
--- a/portfolio/templates/default.html
+++ b/portfolio/templates/default.html
@@ -6,34 +6,24 @@