commit 5d991051a2ff330114c72f0f9b79e8e3681e28cb Author: Ad5001 Date: Tue Jun 8 20:24:05 2021 +0200 Initial commit 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..5bbf877 --- /dev/null +++ b/config.yaml @@ -0,0 +1,51 @@ +baseURL: http://apps.ad5001.eu/ +languageCode: en-us +title: Ad5001 Apps +theme: omegamma +copyright: Copyright © Ad5001 2021 + +menu: + main: + - identifier: apps + name: Apps + pre: + title: blog section + url: / + - identifier: git + name: Git + pre: + title: git section + url: https://git.ad5001.eu + - identifier: about + name: About + pre: + title: about section + url: https://ad5001.eu/about + 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 + +params: + brandWebsite: //ad5001.eu + usingTheme: Using + poweredBy: Powered by + social: + - diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..44efa21 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,11 @@ +--- +title: List +description: List of Ad5001's application. +--- +# List of applications + +This page lists my realeased open source software with a brief presentation of them. +This list has been built over the years, and is non-exhaustive. +Older software can be found at my [legacy website](https://download.ad5001.eu). + + diff --git a/content/app2.png b/content/app2.png new file mode 100644 index 0000000..f8e5be4 Binary files /dev/null and b/content/app2.png differ diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..8343c87 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,8 @@ +{{ define "main" }} +{{ partial "section1.html" (dict "Image" "/img/app0.png" "Content" .Content) }} +




+




+




+


+{{ end }} + diff --git a/static/img/app0.png b/static/img/app0.png new file mode 100644 index 0000000..d08d556 Binary files /dev/null and b/static/img/app0.png differ diff --git a/static/img/app1.png b/static/img/app1.png new file mode 100644 index 0000000..9af66c0 Binary files /dev/null and b/static/img/app1.png differ diff --git a/static/img/app2.png b/static/img/app2.png new file mode 100644 index 0000000..58e86fc Binary files /dev/null and b/static/img/app2.png differ