From be4a84384108a30359b30e607e95a37d44b41e11 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Mon, 28 Jun 2021 17:27:44 +0200 Subject: [PATCH] Initialial commit --- .gitignore | 5 ++ archetypes/default.md | 6 +++ config.yaml | 119 ++++++++++++++++++++++++++++++++++++++++++ content/_index.md | 51 ++++++++++++++++++ 4 files changed, 181 insertions(+) create mode 100644 .gitignore create mode 100644 archetypes/default.md create mode 100644 config.yaml create mode 100644 content/_index.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e7b3c8d --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.kdev4 +kdev4 +themes +public +resources diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..9c5dc37 --- /dev/null +++ b/config.yaml @@ -0,0 +1,119 @@ +baseURL: http://ad5001.eu +languageCode: en +title: Ad5001 +theme: omegamma +copyright: Copyright © Ad5001 2021 + + +params: + brandWebsite: //ad5001.eu + usingTheme: Using + poweredBy: Powered by + +languages: + en: + languageName: English + menu: + main: + - identifier: apps + name: Apps + pre: + title: apps section + url: https://apps.ad5001.eu/ + weight: 20 + - identifier: git + name: Git + pre: + title: git section + url: https://git.ad5001.eu + weight: 10 + - identifier: about + name: About + pre: + title: about section + url: /about + weight: 0 + social: + - identifier: mastodon + name: Mastodon + pre: + title: mastodon social icon + url: https://mastodon.technology/@Ad5001 + - identifier: twitter + name: Twitter + pre: + title: twitter social icon + url: https://twitter.com/Ad5001P4F + - identifier: gitea + name: Gitea + pre: + title: gitea social icon + url: https://git.ad5001.eu/Ad5001 + - identifier: github + name: Mastodon + pre: + title: github social icon + url: https://github.com/Ad5001 + - identifier: mail + name: Mail + pre: + title: mail icon + url: "" + weight: 0 + fr: + languageName: Français + menu: + main: + - identifier: apps + name: Apps + pre: + title: apps list section + url: https://apps.ad5001.eu/fr/ + weight: 20 + - identifier: git + name: Git + pre: + title: git section + url: https://git.ad5001.eu + weight: 10 + - identifier: about + name: À propos + pre: + title: about section + url: /a-propos + weight: 0 + social: + - identifier: mastodon + name: Mastodon + pre: + title: mastodon social icon + url: https://mastodon.technology/@Ad5001 + - identifier: twitter + name: Twitter + pre: + title: twitter social icon + url: https://twitter.com/Ad5001P4F + - identifier: gitea + name: Gitea + pre: + title: gitea social icon + url: https://git.ad5001.eu/Ad5001 + - identifier: github + name: Mastodon + pre: + title: github social icon + url: https://github.com/Ad5001 + - identifier: mail + name: Mail + pre: + title: mail icon + url: "" + weight: 0 + +markup: + goldmark: + renderer: + hardWraps: false + unsafe: true + xhtml: false + diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..bf8485b --- /dev/null +++ b/content/_index.md @@ -0,0 +1,51 @@ +--- +title: Main page +description: Main page and index of the website. +layout: main-index + +Description: | + ## Full stack developer. + I create many different kinds of software you can find over my [application's website](https://apps.ad5001.eu). + +Links: + - Title: About me + Icon: person + URL: /about-me + - Title: Apps Website + Icon: apps + URL: https://apps.ad5001.eu + +Cards: + FLOSS: + Title: Free, Libre and Open Source + Description: | + The software I publish follow the [FLOSS (Free, Libre and Open Source Software)](https://en.wikipedia.org/wiki/Free_and_open-source_software) philosophy and are published under licenses that follow it like: + - the [GNU General Public License v3](https://www.gnu.org/licenses/gpl-3.0.html) + - the [GNU Affero General Public License v3](https://www.gnu.org/licenses/agpl-3.0.html) + - the [Mozilla Public License v2](https://www.mozilla.org/en-US/MPL/2.0/). + + while my creative work is generally published under the [Creative Commons BY-NC-SA v4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode). + Links: + - Title: Learn more + Icon: license + URL: https://en.wikipedia.org/wiki/Free-software_license + Privacy: + Title: Private by design + Description: | + Being FLOSS, the source code of the software I publish is fully available [on my git server](https://git.ad5001.eu), making it transparent to all. + As such, the software I create and publish does not [phone home](https://en.wikipedia.org/wiki/Phoning_home) or send data to the internet, unless explictly consented by the user. + Some of the software I created like [AccountFree](https://apps.ad5001.eu/accountfree) or [unchecker](https://apps.ad5001.eu/unchecker) were made to solve issues related to the lack of respect for people's privacy from some companies. + Links: + - Title: Check them out + Icon: apps + URL: https://apps.ad5001.eu + Platforms: + Title: Platform agnostic + Description: | + By using platform abstractions, whether made by hand, or using [frameworks](https://en.wikipedia.org/wiki/Software_framework), the software I create is available on a wide variety of platforms. + While I, of course, cannot package for every single distribution system out there, I try to prepare at least one distribution platform for every single platform the software I create supports. + Links: + - Title: Check Platforms + Icon: platforms + URL: /distribution-platforms +---