1
0
Fork 0
This commit is contained in:
Yusuf Bera Ertan 2020-03-15 20:12:27 +03:00
commit 895365cf22
No known key found for this signature in database
GPG Key ID: 61807181F60EFCB2
11 changed files with 124 additions and 0 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public

18
.gitlab-ci.yml Normal file
View File

@ -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

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/sam"]
path = themes/sam
url = https://github.com/janbaudisch/zola-sam.git

24
LICENSE Normal file
View File

@ -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 <https://unlicense.org>

1
README.md Normal file
View File

@ -0,0 +1 @@
My website

30
config.toml Normal file
View File

@ -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" }
]

17
content/about.md Normal file
View File

@ -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: <https://gitlab.com/yusdacra>
- Github: <https://github.com/yusdacra>

3
content/posts/_index.md Normal file
View File

@ -0,0 +1,3 @@
+++
title = "posts"
+++

21
content/projects.md Normal file
View File

@ -0,0 +1,21 @@
+++
title = "projects"
[extra]
no_header = true
+++
### Neonment
Neonment is a first person hero shooter. Name is subject to change. WIP.
<https://gitlab.com/yusdacra/neonment>
### treeculler
A Rust crate for working with frustum and occlusion culling. WIP.
<https://gitlab.com/yusdacra/treeculler>
### Hakkero OS
Learning project, implementation of <https://os.phil-opp.com/>.
<https://gitlab.com/hakkero-os/hakkero>

1
themes/sam Submodule

@ -0,0 +1 @@
Subproject commit 55cc63ae5dff78351cd8835606915e3a4f6af169