Add first version of website files

This commit is contained in:
mr-vercetti 2022-11-27 15:24:04 +01:00
parent 4569df2333
commit 171988a9ff
10 changed files with 336 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/d3c3nt"]
path = themes/d3c3nt
url = https://github.com/FIGBERT/d3c3nt

25
config.toml Normal file
View File

@ -0,0 +1,25 @@
base_url = "https://mr.vercetti.cc"
theme = "d3c3nt"
title = "mr-vercetti"
description = "mr.vercetti.cc - sup homie?"
default_language = "en"
generate_feed = true
minify_html = true
[markdown]
highlight_code = true
highlight_theme = "visual-studio-dark"
external_links_target_blank = true
external_links_no_follow = true
external_links_no_referrer = true
smart_punctuation = true
[extra]
d3_nav = [
{ name = "HOME", path = "/" },
{ name = "POSTS", path = "/posts"},
{ name = "PROJECTS", path = "https://git.vercetti.cc/mr-vercetti"},
]
d3_icon = "/icon.png"
d3_author = "mr-vercetti"

61
content/_index.md Normal file
View File

@ -0,0 +1,61 @@
+++
title = "Home"
insert_anchor_links = "left"
template = "section.html"
+++
## Hey there!
I'm `mr-vercetti`, a regular nerdy guy from Europe. I created this website to be able
to share my hobbies with others and not use bloated centralised social media platforms.
I can do whatever I want here, without ads and other crap.
This is my place in the World Wide Web. It's a very nice feeling to have
one.
## All right, but what will be posted here?
I intend to write something from time to time about what turns me on, which is:
- Tinkering with computers
- Self-hosting
- Playing classic video games
- Watching classic movies
- Old PC hardware
- My job
- Weird stuff from the Internet
## By the way, more about me...
I make my living as DevOps Engineer. I love classic/retro/old stuff, but I also
appreciate the new. I spend most of my free time in front of the computer but
that doesn't mean it's "productive". I'm not a fan of productivity above all else.
Sometimes I just like to sit and install mods for Vice City.
## My job and my own projects
My job is quite an important part of my life because it connects with my passions
and gives me a lot of satisfaction. However, I'm not some kind of tech-guru, and
I'm still learning a lot of the basics. Keep that in mind when you browse my
[projects][gitea]!
## Contact me
Now that you know a bit about me, perhaps you'd like to make friends?
Feel free to contact me via [email][email]. You can also find me on:
- My self-hosted [Gitea][gitea] instance
- [Github][github]
- [Reddit][reddit]
- [Linkedin][linkedin]
## Webrings 🕸️💍
*[←][hotline-previous] [Hotline Webring][hotline] [→][hotline-next]*
[email]: mailto:mr@vercetti.cc
[gitea]: https://git.vercetti.cc/mr-vercetti
[github]: https://github.com/mr-vercetti
[reddit]: https://www.reddit.com/user/mr-vercetti
[linkedin]: https://www.linkedin.com/in/adam-milewski-162b821b3/
[hotline]: https://hotlinewebring.club/
[hotline-next]: https://hotlinewebring.club/mr-vercetti/next
[hotline-previous]: https://hotlinewebring.club/mr-vercetti/previous

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

@ -0,0 +1,9 @@
+++
title = "Posts"
description = ""
sort_by = "date"
template = "list.html"
page_template = "article.html"
insert_anchor_links = "left"
+++

View File

@ -0,0 +1,30 @@
+++
title = "Thanks"
description = "A few words of thanks"
date = 2022-11-24
+++
This is my first post on this website, so I would like to take this opportunity to thank a few people
whose works have influenced me recently or who are simply cool.
- [Thomas Pain][thomas-pain] for his [manifesto][manifesto], after reading which I wanted
to have my own website and which I fully agree with.
- [Wolfgang][wolfgang] for his cool [yt channel][wolfgang-yt] thanks to which I have become familiar
with many interesting issues and technologies (including [Zola][zola], on which this site is based).
- [FIGBERT][figbert] for creating a veeery decent [d3c3nt Zola theme][d3c3nt], which this
site also uses.
- [Silent][silent] for a whole bunch of excellent patches for old PC games.
- [ThirteenAG][thirteenag] for all your magnificent [Widescreen Fixes][thirteenag-widescreen-fixes].
Thank you very much guys! You made my life better.
[thomas-pain]: https://www.tdpain.net/
[manifesto]: https://www.tdpain.net/blog/the-modern-web-sucks
[wolfgang]: https://notthebe.ee/
[wolfgang-yt]: https://www.youtube.com/@WolfgangsChannel
[zola]: https://www.getzola.org/
[figbert]: https://figbert.com
[d3c3nt]: https://git.figbert.com/d3c3nt/
[silent]: https://cookieplmonster.github.io/
[thirteenag]: https://thirteenag.github.io/
[thirteenag-widescreen-fixes]: https://thirteenag.github.io/wfp

1
static/404.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

205
static/global.css Normal file
View File

@ -0,0 +1,205 @@
:root {
--background-color: #1F1E1E;
--secondary-color: #214ED4;
--tertiary-color: #6082E6;
--text-color: #F5F5F5;
--link-color: #DCE4F9;
}
/* Main */
body {
font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Cantarell, Ubuntu, Helvetica, Arial, sans-serif;
background-color: var(--background-color);
padding: 0 3rem 3rem 3rem;
color: var(--text-color);
margin-right: auto;
margin-left: auto;
line-height: 200%;
font-weight: 400;
max-width: 40rem;
}
video, picture, img {
width: 100%;
}
p {
margin-top: 0;
}
article > p {
line-height: 2;
margin-top: 0.5rem;
margin-bottom: 1rem;
}
a {
font-weight: 450;
color: var(--link-color);
text-decoration-color: var(--tertiary-color);
}
a:hover {
text-decoration-color: var(--secondary-color);
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: 700;
position: relative;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
text-decoration: none;
color: inherit;
}
.zola-anchor {
opacity: 0;
position: absolute;
right: 101%;
transition: opacity .1s linear;
color: var(--tertiary-color);
}
h1:hover > .zola-anchor,
h2:hover > .zola-anchor,
h3:hover > .zola-anchor,
h4:hover > .zola-anchor,
h5:hover > .zola-anchor,
h6:hover > .zola-anchor {
opacity: 100;
}
/* Nav */
nav {
width: 100%;
display: flex;
font-weight: 600;
justify-content: space-around;
}
nav > a {
color: inherit;
text-decoration: none;
}
header {
padding-bottom: 0.5rem;
}
/* Code */
pre {
padding: 1rem;
white-space: pre-wrap;
border: 1px solid #CCC;
}
pre > code {
border: none;
}
code {
font-size: 1rem;
padding: 0 4px;
border: 1px solid #CCC;
}
/* Quotes */
blockquote {
border-left: 5px solid var(--secondary-color);
margin: 1.5rem 0;
padding: 0 1.5rem;
}
/* Tables */
table {
border-collapse: collapse;
width: 100%;
}
thead {
background-color: var(--tertiary-color);
}
td, th {
border: 1px solid var(--text-color);
padding: 0.5rem;
text-align: left;
}
/* Abbreviations */
abbr {
text-decoration-line: underline;
text-decoration-style: dotted;
text-decoration-color: var(--tertiary-color);
text-decoration-thickness: 2px;
}
/* Keyboard */
kbd {
color: var(--background-color);
font-size: 1.25rem;
padding: 0.05rem 0.4rem;
text-shadow: 0 1px 0 #FFF;
background-color: #E4E6E8;
border: 1px solid #726E6E;
border-radius: 3px;
box-shadow: 0 1px 1px rgba(244,245,245,0.15), inset 0 1px 0 0 #FFF;
}
/* Highlights */
mark {
padding: 0.15rem;
background-color: var(--tertiary-color);
}
/* Posts and Projects */
.date-list {
padding: 0;
}
.date-list > li {
display: flex;
justify-content: space-between;
align-items: center;
line-height: 145%;
padding: 0 0 1rem 0;
}
.date-list > li > a {
flex-basis: 50%;
}
/* Error */
.error {
display: grid;
place-items: center;
width: 100%;
height: 100%;
}
.error > svg {
max-width: 19rem;
}
.error > strong {
font-size: 5rem;
margin-bottom: 1.5rem;
}
.error > p {
font-size: 2rem;
margin: 0;
}

BIN
static/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

1
themes/d3c3nt Submodule

@ -0,0 +1 @@
Subproject commit 3c773fa65c9565faff087f311fbea098a53d2082