diff --git a/assets/css/purple.css b/assets/css/purple.css new file mode 100644 index 0000000..1db5a2b --- /dev/null +++ b/assets/css/purple.css @@ -0,0 +1,353 @@ +/* Markdown */ +:root{ +--maincolor: #fad000; +--bordercl:rebeccapurple; +--callouctcolor:dodgerblue; +--hovercolor:navy; +--darkMaincolor: #50fa7b; +} +html { + color: #232333; + font-family: 'Roboto Mono', monospace; + font-size: 15px; + background-color: #191830; + color: white; + line-height: 1.6em; +} +body{ + display: block; + margin: 8px; +} +* { + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +::selection { + background: var(--maincolor); + color: #fff; +} + +p { + font-family: 'Fira Sans', sans-serif; + line-height: 1.5; +} + +hr { + border: 0; + border-top: 3px dotted var(--bordercl); + margin: 1em 0; +} + +blockquote { + border-left: 3px solid var(--bordercl); + color: #737373; + margin: 0; + padding-left: 1em; +} + +a { + border-bottom: 3px solid var(--maincolor); + color: inherit; + text-decoration: none; +} +a:hover { + background-color: var(--hovercolor); + color: #fff; +} + +ul { + list-style: none; + padding-left: 2ch; +} +ul li { + text-indent: -2ch; +} +ul > li::before { + content: '* '; + font-weight: bold; +} + +/* Images */ +img { + border: 3px solid #ececec; + max-width: 100%; +} + +figure { + box-sizing: border-box; + display: inline-block; + margin: 0; + max-width: 100%; +} + +figure img { + max-height: 500px; +} + +@media screen and (min-width: 600px) { + figure { + padding: 0 40px; + } +} + +figure h4 { + font-size: 1rem; + margin: 0; + margin-bottom: 1em; +} +figure h4::before { + content: '↳ '; +} + +/* Code blocks */ +code { + background-color: #131327; + padding: .1em .2em; + color: #fad000; +} + +pre { + background-color: #ececec; + line-height: 1.4; + overflow-x: auto; + padding: 1em; +} + +.highlight pre ::selection { + background: rgba(255, 255, 255, 0.2); + color: inherit; +} + +pre code { + background-color: transparent; + color: inherit; + font-size: 100%; + padding: 0; +} + +/* Containers */ +.content { + margin-bottom: 4em; + margin-left: auto; + margin-right: auto; + max-width: 800px; + padding: 0 1ch; + word-wrap: break-word; +} + +/* Header */ +header { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + margin: 1em 0; + line-height: 2.5em; +} + +header .main { + font-size: 1.5rem; +} +h1, h2, h3, h4, h5, h6 { + font-size: 1.2rem; + margin-top: 2em; +} + +h1::before { color: var(--maincolor); content: '# '; } +h2::before { color: var(--maincolor); content: '## '; } +h3::before { color: var(--maincolor); content: '### '; } +h4::before { color: var(--maincolor); content: '#### '; } +h5::before { color: var(--maincolor); content: '##### '; } +h6::before { color: var(--maincolor); content: '###### '; } + +.meta { + color: #999; + letter-spacing: -0.5px; +} + +.toc { + background-color: #ececec; + color: #232333; + padding: 10px; + padding-bottom: 0; + border-radius: 5px; + display: inline-block; +} + +/* Footer */ +footer { + display: flex; + align-items: center; + border-top: 0.4rem dotted var(--bordercl); + padding: 2rem 0rem; + margin-top: 2rem; +} +.soc { + display: flex; + align-items: center; + border-bottom: none; +} +.border { + margin-left: 0.5rem; + margin-right: 0.5rem; + border: 1px solid; +} +.footer-info { + padding: var(--footer-padding); +} + +/* Common */ +.title h1 { + margin-bottom: 0; +} + +time { + color: grey; +} + +/* Posts */ +article .title { + margin-bottom: 1em; +} + + +/* Callout */ +.callout { + background-color: var(--callouctcolor); + color: #fff; + padding: 1em; +} + +.callout p { + font-family: 'IBM Plex Mono', monospace; + margin: 0; +} + +.callout a { + border-bottom: 3px solid #fff; +} + +.callout a:hover { + background-color: #fff; + color: var(--callouctcolor); +} + +.site-description { +display: flex; +justify-content: space-between; +} +.tags li::before{ + content: "🏷 "; +} +.tags a{ + border-bottom: 3px solid var(--maincolor); +} +.tags a:hover{ + color:white; + background-color: var(--hovercolor); +} +svg{ + max-height: 15px; +} +.soc:hover{ + color: white; +} +.draft-label{ + color: var(--bordercl); + text-decoration: none; + padding: 2px 4px; + border-radius: 4px; + margin-left: 6px; + background-color: #f9f2f4; +} +.highlight { + position: relative; + -webkit-overflow-scrolling: touch; +} +.highlight pre code[class*="language-"] { + -webkit-overflow-scrolling: touch; +} +.highlight pre code[class*="language-"]::before { + background: black; + border-radius: 0 0 0.25rem 0.25rem; + color: white; + font-size: 12px; + letter-spacing: 0.025rem; + padding: 0.1rem 0.5rem; + position: absolute; + right: 1rem; + text-align: right; + text-transform: uppercase; + top: 0; +} + +.highlight pre code[class=language-javaScript]::before, +.highlight pre code[class="language-js"]::before { +content: "js"; +background: #f7df1e; +color: black; +} +.highlight pre code[class*='language-yml']::before, +.highlight pre code[class*='language-yaml']::before { +content: 'yaml'; +background: #f71e6a; +color: white; +} +.highlight pre code[class*='language-shell']::before, +.highlight pre code[class*='language-bash']::before, +.highlight pre code[class*='language-sh']::before { +content: 'shell'; +background: green; +color:white +} +.highlight pre code[class*='language-json']::before{ +content: 'json'; +background: dodgerblue; + color: #000000 +} +.highlight pre code[class*='language-python']::before, +.highlight pre code[class*='language-py']::before { +content: 'py'; +background: blue; +color: yellow ; +} +.highlight pre code[class*='language-css']::before{ +content: 'css'; +background: cyan; +color: black ; +} +.highlight pre code[class*='language-go']::before{ +content: 'Go'; +background: cyan; +color: royalblue ; +} +.highlight pre code[class*='language-md']::before, +.highlight pre code[class*='language-md']::before{ +content: 'Markdown'; +background: royalblue; +color: whitesmoke ; +} + +.highlight pre code[class*='language-md']::before, +.highlight pre code[class*='language-md']::before{ +content: 'nix'; +background: royalblue; +color: whitesmoke ; +} + + +/* table */ +table { + border-spacing: 0; + border-collapse: collapse; +} + +table th{ + padding: 6px 13px; + border: 1px solid #dfe2e5; + font-size: large; +} + +table td{ + padding: 6px 13px; + border: 1px solid #dfe2e5; +} diff --git a/assets/icons/forgejo.svg b/assets/icons/forgejo.svg new file mode 100644 index 0000000..c735dad --- /dev/null +++ b/assets/icons/forgejo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/img/forgejo.svg b/assets/img/forgejo.svg new file mode 100644 index 0000000..c735dad --- /dev/null +++ b/assets/img/forgejo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml deleted file mode 100644 index 2ad3928..0000000 --- a/config/_default/config.toml +++ /dev/null @@ -1,11 +0,0 @@ -# Change baseurl before deploy -baseurl = "https://4o1x5.dev" -languageCode = "en-us" -paginate = 5 -title = "4o1x5" -#theme = "nostyle" -theme = "stack" - -# Available values: en, fr, id, ja, ko, pt-br, zh-cn, zh-tw, es, de, nl, it, th, el, uk, ar -defaultContentLanguage = "en" -hasCJKLanguage = false diff --git a/config/_default/languages.toml b/config/_default/languages.toml deleted file mode 100644 index 5b1c0f5..0000000 --- a/config/_default/languages.toml +++ /dev/null @@ -1,18 +0,0 @@ -# Rename this file to languages.toml to enable multilingual support -[en] -languageName = "English" -languagedirection = "ltr" -title = "4o1x5" -weight = 1 - -[hu] -languageName = "Magyar" -languagedirection = "ltr" -title = "4o1x5" -weight = 2 - -[fr] -languageName = "Français" -languagedirection = "ltr" -title = "4o1x5" -weight = 2 \ No newline at end of file diff --git a/config/_default/markup.toml b/config/_default/markup.toml deleted file mode 100644 index ec22d56..0000000 --- a/config/_default/markup.toml +++ /dev/null @@ -1,17 +0,0 @@ -# Markdown renderer configuration -[goldmark.renderer] -unsafe = true - -[tableOfContents] -endLevel = 4 -ordered = true -startLevel = 2 - -[highlight] -noClasses = false -codeFences = true -guessSyntax = true -lineNoStart = 1 -lineNos = true -lineNumbersInTable = true -tabWidth = 4 diff --git a/config/_default/menu.toml b/config/_default/menu.toml deleted file mode 100644 index 12ca1fa..0000000 --- a/config/_default/menu.toml +++ /dev/null @@ -1,19 +0,0 @@ - - - -[[social]] -identifier = "git" -name = "Git" -url = "https://git.4o1x5.dev/4o1x5" - -[social.params] -icon = "git-fork" - -[[social]] -identifier = "matrix" -name = "Matrix" -url = "https://matrix.to/#/@4o1x5:4o1x5.dev" - -[social.params] -icon = "message" - diff --git a/config/_default/module.toml b/config/_default/module.toml deleted file mode 100644 index e69de29..0000000 diff --git a/config/_default/params.toml b/config/_default/params.toml deleted file mode 100644 index b29511b..0000000 --- a/config/_default/params.toml +++ /dev/null @@ -1,83 +0,0 @@ -mainSections = ["post"] -rssFullContent = true -favicon = "/favicon.png" - -[footer] -since = 2024 -customText = "Art by byung jun ko" -customTextUrl= "https://www.behance.net/gallery/111899291/Blue-Spring-2019" - -[dateFormat] -published = "Jan 02, 2006" -lastUpdated = "Jan 02, 2006 15:04 MST" - -[sidebar] -subtitle = "Software developer of somekind" -musicTitle = "Empathy - Crystal Castles" -musicUrl = "https://youtu.be/NLi2v-Gq-5A" - - -[sidebar.avatar] -enabled = true -local = true -src = "img/pfp.png" - -[article] -math = true -readingTime = true - - -[article.license] -enabled = true -default = "Licensed under CC-BY-SA 4.0" - -[[widgets.homepage]] -type = "search" - -[[widgets.homepage]] -type = "archives" - -[widgets.homepage.params] -limit = 5 - -[[widgets.homepage]] -type = "categories" - -[widgets.homepage.params] -limit = 10 - -[[widgets.homepage]] -type = "tag-cloud" - -[widgets.homepage.params] -limit = 10 - -[[widgets.page]] -type = "toc" - - - -[defaultImage.opengraph] -enabled = false -local = false -src = "" - -[colorScheme] -toggle = true -default = "auto" - -[imageProcessing.cover] -enabled = true - -[imageProcessing.content] -enabled = true - -## Comments -[comments] -enabled = true -provider = "cactus" - -[comments.cactus] -defaultHomeserverUrl = "https://matrix.cactus.chat" -serverName = "cactus.chat" -siteName = "4o1x5dev" diff --git a/config/_default/permalinks.toml b/config/_default/permalinks.toml deleted file mode 100644 index 2499a7e..0000000 --- a/config/_default/permalinks.toml +++ /dev/null @@ -1,3 +0,0 @@ -# Permalinks format of each content section -post = "/p/:slug/" -page = "/:slug/" \ No newline at end of file diff --git a/config/_default/related.toml b/config/_default/related.toml deleted file mode 100644 index ae9f69a..0000000 --- a/config/_default/related.toml +++ /dev/null @@ -1,12 +0,0 @@ -# Related contents configuration -includeNewer = true -threshold = 60 -toLower = false - -[[indices]] -name = "tags" -weight = 100 - -[[indices]] -name = "categories" -weight = 200 diff --git a/content/_index.hu.md b/content/_index.hu.md deleted file mode 100644 index ce015ff..0000000 --- a/content/_index.hu.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -menu: - main: - name: Kezdőlap - weight: 1 - params: - icon: home ---- diff --git a/content/_index.md b/content/_index.md deleted file mode 100644 index 636abae..0000000 --- a/content/_index.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -menu: - main: - name: Home - weight: 1 - params: - icon: home ---- \ No newline at end of file diff --git a/content/page/archives/index.fr.md b/content/page/archives/index.fr.md deleted file mode 100644 index 0d6b150..0000000 --- a/content/page/archives/index.fr.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Archive" -date: 2022-03-06 -layout: "archives" -menu: - main: - params: - icon: archives ---- diff --git a/content/page/archives/index.hu.md b/content/page/archives/index.hu.md deleted file mode 100644 index 7690eab..0000000 --- a/content/page/archives/index.hu.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Könyvtár" -date: 2022-03-06 -layout: "archives" -menu: - main: - params: - icon: archives ---- diff --git a/content/page/archives/index.md b/content/page/archives/index.md deleted file mode 100644 index d44d3d9..0000000 --- a/content/page/archives/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "Archives" -date: 2022-03-06 -layout: "archives" -slug: "archives" -menu: - main: - params: - icon: archives ---- diff --git a/content/page/frontends/index.hu.md b/content/page/frontends/index.hu.md deleted file mode 100644 index c4a090c..0000000 --- a/content/page/frontends/index.hu.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: Frontendek -links: - - title: Piped - description: An alternative privacy-friendly YouTube frontend which is efficient by design. - website: https://piped.4o1x5.dev/ - image: piped.svg - - - title: Libreddit - description: Private front-end for Reddit - website: https://libreddit.4o1x5.dev/ - image: libreddit.png - -menu: - main: - params: - icon: cookie-off - -comments: true -draft: true ---- - -# Privacy respecting frontends - -You may come across breaches occurring every month or two, which is why I prioritize using privacy-respecting -frontends on a daily basis to protect my data. As I am leveraging someone else's server for free, it's only fair -that I also self-host them as well. - -**You are free to use mine anytime free of charge.** - -[If you're interested in reviewing my privacy -terms, they are available here.](/privacy-policy) Tho I do not collet any data... ever... diff --git a/content/page/frontends/index.md b/content/page/frontends/index.md index c6f3f2f..0a6a469 100644 --- a/content/page/frontends/index.md +++ b/content/page/frontends/index.md @@ -1,79 +1,5 @@ --- title: Frontends -links: - # - title: Piped - # description: An alternative privacy-friendly YouTube frontend which is efficient by design. - # website: https://piped.4o1x5.dev/ - # image: piped.svg - - # - title: Quetre - # description: An alternaive front-end to Quora. It enables you to see answers without ads, trackers, and other such bloat. - # website: https://libreddit.4o1x5.dev/ - # image: quetre.png - - # - title: libremdb - # description: An alternaive front-end to Quora. It enables you to see answers without ads, trackers, and other such bloat. - # website: https://libreddit.4o1x5.dev/ - # image: libremdb.png - - - title: Libreddit - description: Private front-end for Reddit - website: https://libreddit.4o1x5.dev/ - image: libreddit.png - - - title: Safetwitch - description: A privacy respecting frontend for twitch.tv - website: https://safetwitch.4o1x5.dev/ - image: safetwitch.png - - - title: Breezewiki - description: An alternative frontend for Fandom - website: https://breezewiki.4o1x5.dev/ - image: breezewiki-icon-color.svg - - - title: Gothub - description: An alternative frontend for GitHub - website: https://gothub.4o1x5.dev/ - image: gothub.svg - - - title: AnonymousOverflow - description: View StackOverflow in privacy and without the clutter - website: https://anonymousoverflow.4o1x5.dev/ - image: anonymousoverflow.webp - - - title: Quetre - description: A libre front-end for Quora - website: https://quetre.4o1x5.dev/ - image: quetre.png - - - title: Libremdb - description: A free & open source IMDb front-end - website: https://libremdb.4o1x5.dev/ - image: libremdb.png - - - title: Dumb - description: An alternative frontend for genius.com - website: https://dumb.4o1x5.dev/ - image: dumb.png - - - title: Rimgo - description: The fast, private image viewer for Imgur. - website: https://rimgo.4o1x5.dev/ - image: rimgo.svg - - - title: Binternet - description: A custom Pinterest frontend, made in PHP - website: https://binternet.4o1x5.dev/ - - - title: Librey - description: Framework and JS free privacy respecting meta search engine - website: https://librey.4o1x5.dev/ - -menu: - main: - params: - icon: cookie-off - comments: false draft: false --- @@ -91,4 +17,4 @@ A plan on hosting **every** frontend that Libredirect has. I will also make them terms, they are available here.](/privacy-policy) Any issues with the services shall be discussed on the [dedicated matrix channel](https://matrix.to/#/#services:4o1x5.dev) -This below is not the full list, if you want all the details go and look at my [infrastructure repo containing them all](https://git.4o1x5.dev/4o1x5/infrastructure/#Privacy-respecting-services) +# [List](https://git.4o1x5.dev/4o1x5/infrastructure/#privacy-respecting-services) diff --git a/content/page/search/index.fr.md b/content/page/search/index.fr.md deleted file mode 100644 index b045de1..0000000 --- a/content/page/search/index.fr.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Chercher" -slug: "search" -layout: "search" -outputs: - - html - - json -menu: - main: - weight: 3 - params: - icon: search ---- diff --git a/content/page/search/index.hu.md b/content/page/search/index.hu.md deleted file mode 100644 index 865f75c..0000000 --- a/content/page/search/index.hu.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Keresés" -slug: "search" -layout: "search" -outputs: - - html - - json -menu: - main: - weight: 3 - params: - icon: search ---- diff --git a/content/page/search/index.md b/content/page/search/index.md deleted file mode 100644 index 7507b68..0000000 --- a/content/page/search/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Search" -slug: "search" -layout: "search" -outputs: - - html - - json -menu: - main: - weight: 3 - params: - icon: search ---- \ No newline at end of file diff --git a/content/post/guides/ host-your-own-spotify/index.en.md b/content/post/guides/ host-your-own-spotify/index.en.md index f6cf608..83bfdf9 100644 --- a/content/post/guides/ host-your-own-spotify/index.en.md +++ b/content/post/guides/ host-your-own-spotify/index.en.md @@ -13,7 +13,7 @@ tags: - Homelab - Selfhost -draft: false +draft: true writingTime: "1h 40m" --- diff --git a/content/post/guides/nix/remote-development/index.md b/content/post/guides/nix/remote-development/index.md index c7f3413..4832e17 100644 --- a/content/post/guides/nix/remote-development/index.md +++ b/content/post/guides/nix/remote-development/index.md @@ -14,7 +14,7 @@ tags: - NixOs - Server Management -draft: false +draft: true --- With the capabilities of Nix & Nixos, we can tailor-make services on our local computer, diff --git a/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.en.md b/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.en.md index d1f883c..7f234f8 100644 --- a/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.en.md +++ b/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.en.md @@ -13,7 +13,7 @@ tags: - Nginx - Short - Hugo -draft: false +draft: true --- ## Overview diff --git a/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.hu.md b/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.hu.md index 1f9af7d..f7c6eb0 100644 --- a/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.hu.md +++ b/content/post/guides/nix/setting-up-a-hugo-site-using-nix/index.hu.md @@ -12,7 +12,7 @@ tags: - Nginx - Rövid - Hugo -draft: false +draft: true --- ## Bevezető diff --git a/content/post/two-years-at-contabo/index.md b/content/post/two-years-at-contabo/index.md new file mode 100644 index 0000000..a1085bf --- /dev/null +++ b/content/post/two-years-at-contabo/index.md @@ -0,0 +1,45 @@ +--- +title: My two years at Contabo +description: It's been a great run, but we have to say our goodbyes! +date: 2024-08-06 00:00:00+0000 +categories: + - Blog + - Guide + - Sysadmin + +tags: + - Servers + - VPS +draft: false +--- + +I wanted to host a few services for myself in 2020 and have decided to rent out a medium VPS at contabo. I stayed at them for exactly two years then I got some servers at home and decided to cancel my subscription. It was a pleasureful experience with them during that time period. Despite many controversies I saw on some reddit posts I had 0 downtime and 0 techinal difficulties. +My use case consisted of hosting a website, matrix server and a bunch of privacy respecting services. Obviously your usage case might vary from mine so its a great idea to take in some information before using their services. I would call them the quantity over quality type of hoster. +I paid about 12 euros a month for 24 months meaning in total I've spent 288 euros. It was a 100% worth since I was still a student with no stable income so I couldn't have bought a big DELL server or something like that. + +## Why is contabo so cheap + +Contabo is dirt cheap. Compared to many other hosters like Vultr or Digitalocean you can see that they almost have 2x cheaper options. But obviously this comes with some compromises. + +### Contabo doesn't use any fancy enterprise level KVM software. + +They use [Proxmox](https://www.proxmox.com/en/). It's an awesome suite of linux tools bundled together that makes virtualization really easy. It also offers an API which contabo 100% uses for their business. As an user of their VPS services you are most likely will notice none of this only if you use VNC and log in before the vps starts. (the proxmox bios logo shows up). +But since Proxmox is a free and libre software this means they have to pay $0 to use it. This results in cheaper prices. + +### You don't own your CPU cores, and neither are they fast + +8 cores, 12 cores or hell even 24 CPU cores might seem exciting at first until you see the _V_ before CPU. In short this means that you are getting _shared_ virtual cpu cores. You are sharing your cpu cores with the hundreds of other virtual servers on that one big physical server. This results in slower/degraded performance. If you intend to run CPU heavy applications on the VPS you are better off buying a dedicated VPS with dedicated virtual cpu cores. + +Contabo is known for having older reused/refurbished servers. Meaning even tho you might get 24 cores with their strongest VPS plan you might just end up with a slower cpu. Compared to other hosters out there, most of them give out details on what you're getting. Contabo never dares to mention it. + +Also there is no support outside of office hours. Meaning you will only get support if the staff is at the computer during a 9-5. This was not really a deal breaker for me as I never needed support. + +### Good things at contabo + +#### Zero downtime + +During my stay, I really had 0 downtime. ZERO. well.. zero caused by contabo. I have restarted my vps a few times in that period and even ran `rm -fr /` once by accident. + +#### Snapshots + +Based on your tier, contabo offer a few snapshots that you can manually create. This allows you to switch back to older versions of your server's state in case you do something horrible like I did.... AFAIK there is no option to automatically schedule snapshots and delete older ones, but I might be wrong diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..3db40f7 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,39 @@ +baseURL = "https://4o1x5.dev" +languageCode = "en-us" +title = "4o1x5.dev" +theme="archie" + +# Code Highlight +pygmentsstyle = "monokai" +pygmentscodefences = true +pygmentscodefencesguesssyntax = true + + +paginate=3 + +[params] + mode="auto" # color-mode → light,dark,toggle or auto + useCDN=false # don't use CDNs for fonts and icons, instead serve them locally. + mathjax = true # enable MathJax support + katex = true # enable KaTeX support + customcss = ["css/purple.css", ] + + +[[params.social]] +name = "Forgejo" +icon = "forgejo" +url = "https://git.4o1x5.dev/4o1x5" + +[[params.social]] +name = "Matrix" +icon = "message" +url = "https://matrix.to/#/@4o1x5:4o1x5.dev" +# Main menu Items + +[[menu.main]] +name = "Home" +url = "/" +weight = 1 + + + diff --git a/i18n/en.yaml b/i18n/en.yaml deleted file mode 100644 index a84ede1..0000000 --- a/i18n/en.yaml +++ /dev/null @@ -1,73 +0,0 @@ -toggleMenu: - other: Toggle Menu - -darkMode: - other: Dark Mode - -list: - page: - one: "{{ .Count }} page" - other: "{{ .Count }} pages" - - section: - other: Section - - subsection: - one: Subsection - other: Subsections - -article: - back: - other: Back - - tableOfContents: - other: Table of contents - - relatedContent: - other: Related content - - lastUpdatedOn: - other: Last updated on - - readingTime: - one: "{{ .Count }} minute read" - other: "{{ .Count }} minute read" - -notFound: - title: - other: Darn... This page does not exist anymore, or hell... maybe never did! - - subtitle: - other: Have a look around my site while you are at it :) - -widget: - archives: - title: - other: Archives - - more: - other: More - - tagCloud: - title: - other: Tags - categoriesCloud: - title: - other: Categories - -search: - title: - other: Search - - placeholder: - other: Type something... - - resultTitle: - other: "#PAGES_COUNT pages (#TIME_SECONDS seconds)" - -footer: - builtWith: - other: Built with {{ .Generator }} - - designedBy: - other: Theme {{ .Theme }} designed by {{ .DesignedBy }} diff --git a/i18n/hu.yaml b/i18n/hu.yaml deleted file mode 100644 index 233f81e..0000000 --- a/i18n/hu.yaml +++ /dev/null @@ -1,73 +0,0 @@ -toggleMenu: - other: Menü Kapcsolása - -darkMode: - other: Sötét Mód - -list: - page: - one: "{{ .Count }} oldal" - other: "{{ .Count }} oldalak" - - section: - other: Szekció - - subsection: - one: Alszekció - other: Alszekciók - -article: - back: - other: Vissza - - tableOfContents: - other: Tartalomjegyzék - - relatedContent: - other: Kapcsolódó tartalom - - lastUpdatedOn: - other: Utolsó frissítés időpontja - - readingTime: - one: "{{ .Count }} percnyi olvasmány" - other: "{{ .Count }} percnyi olvasmány" - -notFound: - title: - other: Ez az oldal nem létezik... vagy lehet hogy sose létezett - - subtitle: - other: Nézz körül addig :) - -widget: - archives: - title: - other: Archívum - - more: - other: Több - - tagCloud: - title: - other: Cimkék - categoriesCloud: - title: - other: Kategóriák - -search: - title: - other: Keresés - - placeholder: - other: Írj valamit... - - resultTitle: - other: "#PAGES_COUNT oldal (#TIME_SECONDS másodperc alatt)" - -footer: - builtWith: - other: "{{ .Generator }} használatával készült" - - designedBy: - other: A {{ .Theme }} téma. {{ .DesignedBy }} tervezte diff --git a/layouts/partials/article/components/details.html b/layouts/partials/article/components/details.html deleted file mode 100644 index 04490c7..0000000 --- a/layouts/partials/article/components/details.html +++ /dev/null @@ -1,80 +0,0 @@ -
- {{ if .Params.categories }} -
- {{ range (.GetTerms "categories") }} - - {{ .LinkTitle }} - - {{ end }} -
- {{ end }} - -
-

- - {{- .Title -}} - -

- - {{ with .Params.description }} -

- {{ . }} -

- {{ end }} -
- - {{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }} - {{ $showDate := not .Date.IsZero }} - {{ $showFooter := or $showDate $showReadingTime }} - {{ if $showFooter }} - - - {{ end }} - - {{ if .IsTranslated }} - - {{ end }} -
diff --git a/layouts/partials/article/components/links.html b/layouts/partials/article/components/links.html deleted file mode 100644 index c683faa..0000000 --- a/layouts/partials/article/components/links.html +++ /dev/null @@ -1,30 +0,0 @@ -
- {{ range $i, $link := .Params.links }} -
- - -
-

- {{- $link.title -}} -

-
- {{ with $link.description }} - {{ . }} - {{ else }} - {{ $link.website }} - {{ end }} -
-
- {{ with $link.image }} - {{ $permalink := . }} - {{ with ($.Resources.GetMatch (printf "%s" (. | safeURL))) }} - {{ $permalink = .RelPermalink }} - {{ end }} -
- -
- {{ end }} -
-
- {{ end }} -
\ No newline at end of file diff --git a/layouts/partials/sidebar/left.html b/layouts/partials/sidebar/left.html deleted file mode 100644 index 623a464..0000000 --- a/layouts/partials/sidebar/left.html +++ /dev/null @@ -1,110 +0,0 @@ - diff --git a/static/forgejo.svg b/static/forgejo.svg new file mode 100644 index 0000000..c735dad --- /dev/null +++ b/static/forgejo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/themes/archie b/themes/archie new file mode 160000 index 0000000..d8819d5 --- /dev/null +++ b/themes/archie @@ -0,0 +1 @@ +Subproject commit d8819d5eee8b0817f41bda3a9dc2100cd6b2b0bd diff --git a/themes/bear b/themes/bear new file mode 160000 index 0000000..efc24bc --- /dev/null +++ b/themes/bear @@ -0,0 +1 @@ +Subproject commit efc24bc5e95f0ccb88051e1a7d95e8a1404e953e diff --git a/themes/typo b/themes/typo new file mode 160000 index 0000000..9890a04 --- /dev/null +++ b/themes/typo @@ -0,0 +1 @@ +Subproject commit 9890a0499034f31c7f84a85ed38d05ae14b42b7f