projects, general layout
This commit is contained in:
parent
3aebbf9ebf
commit
e18f244fe5
1 changed files with 70 additions and 5 deletions
75
hugo.toml
75
hugo.toml
|
|
@ -1,13 +1,78 @@
|
||||||
baseURL = 'https://st.pages.except.one/'
|
baseURL = 'https://st.pages.except.one/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'My New Hugo Site'
|
title = 'St. Page'
|
||||||
themesDir = "themes"
|
themesDir = "themes"
|
||||||
theme = 'kaslaanka'
|
theme = 'kaslaanka'
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
sitename = "Kaslaanka Theme"
|
sitename = "My Page"
|
||||||
copyrights = "John Doe"
|
copyrights = "St."
|
||||||
defaultList = "global"
|
defaultList = "global"
|
||||||
paginationLen = 3
|
paginationLen = 3
|
||||||
projectsURL = "https://st.pages.except.one/"
|
projectsURL = "https://st.pages.except.one/projects"
|
||||||
brief_about = "<center>Kaslaanka theme demo</center>"
|
brief_about = "<center>Hi!</center>"
|
||||||
|
|
||||||
|
[[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"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue