commit 895365cf22998eb9ffe65cdb626dbf4c92110137 Author: Yusuf Bera Ertan Date: Sun Mar 15 20:12:27 2020 +0300 Initial diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1fecb68 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8fcc874 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: alpine:edge + +variables: + GIT_SUBMODULE_STRATEGY: recursive + +before_script: + - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing zola + +pages: + stage: deploy + script: + - zola build + artifacts: + paths: + - public + only: + - master + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ba1e0d9 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/sam"] + path = themes/sam + url = https://github.com/janbaudisch/zola-sam.git diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fdddb29 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b4e541 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +My website diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..781cf4f --- /dev/null +++ b/config.toml @@ -0,0 +1,30 @@ +# The URL the site will be built for +base_url = "https://yusdacra.gitlab.io" +title = "yusdacra's stuff" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false +generate_rss = false + +check_external_links = true + +taxonomies = [ + {name = "tags", rss = true} +] + +theme = "sam" + +[extra] +# Put all your custom variables here +sam_menu = [ + { text = "posts", link = "/posts" }, + { text = "about", link = "/about" }, + { text = "projects", link = "/projects" } +] diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..304076d --- /dev/null +++ b/content/about.md @@ -0,0 +1,17 @@ ++++ +title = "about" + +[extra] +no_header = true ++++ + +Hello. This is where I post about my stuff. +Feel free to send me an e-mail or DM on Discord / Matrix if you have anything to ask. + +Contacts: +- Discord: yusdacra#7447 +- Matrix: @yusdacra:feneas.org +- E-Mail: y.bera003.06@pm.me +--- +- Gitlab: +- Github: diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..447c9ca --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,3 @@ ++++ +title = "posts" ++++ diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..8b3641f --- /dev/null +++ b/content/projects.md @@ -0,0 +1,21 @@ ++++ +title = "projects" + +[extra] +no_header = true ++++ + +### Neonment +Neonment is a first person hero shooter. Name is subject to change. WIP. + + + +### treeculler +A Rust crate for working with frustum and occlusion culling. WIP. + + + +### Hakkero OS +Learning project, implementation of . + + diff --git a/themes/sam b/themes/sam new file mode 160000 index 0000000..55cc63a --- /dev/null +++ b/themes/sam @@ -0,0 +1 @@ +Subproject commit 55cc63ae5dff78351cd8835606915e3a4f6af169