diff --git a/hugo.toml b/hugo.toml
index bd46ea8..e6856ea 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -1,13 +1,78 @@
baseURL = 'https://st.pages.except.one/'
languageCode = 'en-us'
-title = 'My New Hugo Site'
+title = 'St. Page'
themesDir = "themes"
theme = 'kaslaanka'
[params]
-sitename = "Kaslaanka Theme"
-copyrights = "John Doe"
+sitename = "My Page"
+copyrights = "St."
defaultList = "global"
paginationLen = 3
-projectsURL = "https://st.pages.except.one/"
-brief_about = "
Kaslaanka theme demo"
+projectsURL = "https://st.pages.except.one/projects"
+brief_about = "Hi!"
+
+[[menu.primary]]
+name = "Home"
+url = "/"
+weight = 1
+
+[[menu.primary]]
+name = "About"
+url = "/about"
+weight = 2
+
+[[menu.primary]]
+name = "Blog"
+url = "/blog"
+weight = 2
+
+[[menu.primary]]
+name = "Projects"
+url = "/projects"
+weight = 2
+
+[[menu.primary]]
+name = "Git"
+url = "https://git.except.one"
+weight = 3
+
+[[params.myprojects]]
+name = "Bytecode Interpreter"
+url = "https://code.except.one/st/lama_byterun/src/branch/byterun_dev_1.30"
+description = "Interpreter for LaMa language bytecode"
+
+[[params.myprojects]]
+name = "Truffle Implementation of the LaMa Language"
+url = "https://code.except.one/st/truffle_lama"
+description = "Interpreter for the LaMa language built on top of the graalvm truffle framework (part.)"
+
+[[params.myprojects]]
+name = "Implementation of the Escher Algorithm"
+url = "https://code.except.one/st/prog_synthesis"
+description = "Algorithm for the recursive program synthesis from paper"
+
+[[params.myprojects]]
+name = "Simple Active Patern Matching"
+url = "https://code.except.one/st/pattern_matching"
+description = "Pattern matching using regular terms instead of the special patterns notion (draft)"
+
+[[params.myprojects]]
+name = "Language Parser, Interpreter and Type Checker"
+url = "https://code.except.one/st/lang_2023"
+description = "First version of the programming language (part.)"
+
+[[params.myprojects]]
+name = "Language Parser, Interpreter and Type Checker"
+url = "https://code.except.one/st/lang"
+description = "Second version of the programming language (part.)"
+
+[[params.myprojects]]
+name = "Language Modes Check Project"
+url = "https://code.except.one/st/lang_modes_check"
+description = "Simple lambda calculus with types and _unique_ mode check implementation (Oxidized OCaml paper)"
+
+[[params.myprojects]]
+name = "Parallel Test System Task"
+url = "https://code.except.one/st/build_system_2022"
+description = "Thread pool implementation"