main
Philipp Rothmann 2023-02-24 17:50:45 +01:00
commit 94d1bbb341
17 changed files with 139 additions and 0 deletions

3
.gitmodules vendored 100644
View File

@ -0,0 +1,3 @@
[submodule "themes/hugo-theme-lean-launch-page"]
path = themes/hugo-theme-lean-launch-page
url = https://github.com/felicianotech/hugo-theme-lean-launch-page.git

0
.hugo_build.lock 100644
View File

4
.vscode/settings.json vendored 100644
View File

@ -0,0 +1,4 @@
{
"files.trimFinalNewlines": false,
"files.trimTrailingWhitespace": false
}

View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

20
config.yml 100644
View File

@ -0,0 +1,20 @@
baseurl: "https://foodsoft.local-it.org"
title: "Foodsoft Entwicklung"
author: ""
canonifyurls: true
paginate: 3
theme: "hugo-theme-lean-launch-page"
params:
tagline: "Wir verbessern Foodsoft und erleichtern so die Arbeit von Einkaufskooperativen."
# mailchimpURL: "//my-account.mailchimp.com/my-subscriber-url"
# twitter: "https://twitter.com/MyNewProduct"
# facebook: "https://facebook.com/MyNewProduct"
# instagram: "https://instagram.com/MyNewProduct"
# youtube: "https://www.youtube.com/channel/MyNewChannel"
# linkedin: "https://www.linkedin.com/company/MyNewProduct"
github: "https://git.local-it.org/Foodsoft/foodsoft"
custom_css:
- "css/main.css"

View File

@ -0,0 +1,11 @@
---
title: Demo
icon: "fa-rocket"
weight: 4
---
Probier die Foodsoft doch einfach mal auf unserer [Demo-Instanz](https://foodsoft.dev.local-it.cloud) aus!
Administratorin: `alice`
User: `bob`
Passwort: `secret`

View File

@ -0,0 +1,9 @@
---
title: "Foodsoft?"
icon: "fa-apple-alt"
weight: 1
---
Foodsoft ist ein Tool für [Lebensmittelkooperativen](https://de.wikipedia.org/wiki/Lebensmittelkooperative), welches selbstorganisierte gemeinsame Bestellungen in Großmengen von regionalen und ökologischen Produkten vereinfacht und transparent gestaltet.
Foodsoft wird entwickelt und betrieben von [foodcoops.net](https://foodcoops.net/)

View File

@ -0,0 +1,13 @@
---
title: "Unser Vorhaben"
icon: "fa-cogs"
weight: 3
---
* ✅ Technische Schuld reduzieren
* ✅ Ruby on Rails Upgrade
* ✅ Artikel Import verbessern
(Großhandelschnitstelle)
* ✅ Userexperience Verbessern
[Mehr dazu hier](https://git.local-it.org/Foodsoft/foodsoft/src/branch/demo/README.md)

View File

@ -0,0 +1,6 @@
---
title: "Zielgruppe"
icon: "fa-users"
weight: 2
---
Unsere Zielgruppen sind Bürger:innen, Gruppen und Vereine, die eine Einkauskooperative aufbauen wollen und eine Software, die die Bestellung, Verteilung und Abrechnung erleichtert, benötigen.

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,5 @@
![](logo-bmbf.svg "=100x")
![](logo-okfn.svg)
[Impressum, Datenschutz](https://local-it.org/datenschutzerklaerung/)

View File

@ -0,0 +1 @@

57
layouts/index.html 100644
View File

@ -0,0 +1,57 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" href="/assets/main.css" />
<link rel="stylesheet" href="/vendor/font-awesome/css/fontawesome.min.css">
<link rel="stylesheet" href="/vendor/font-awesome/css/solid.min.css">
<link rel="stylesheet" href="/vendor/font-awesome/css/brands.min.css">
{{ range .Site.Params.custom_css -}}
<link rel="stylesheet" href="{{ . | absURL }}">
{{- end }}
{{ template "_internal/opengraph.html" . }}
{{ if (fileExists "/static/favicon.png") }}
<link rel="icon" type="image/png" href="favicon.png" />
{{ end }}
<title>{{ .Site.Title }}</title>
</head>
<body>
{{ if (fileExists "/static/favicon.png") }}
<img class="logo" src="/favicon.png" alt="Logo" />
{{ end }}
<ul class="social-icons">
{{ if isset .Site.Params "github" }}<li><a href="{{ .Site.Params.github }}" title="Code" target="_blank"><i aria-hidden="true"
class="fab fa-github"></i></a></li>{{ end }}
</ul>
{{ block "main" . }}
{{ end }}
<h1>{{ .Site.Title }}</h1>
<p>{{ .Site.Params.tagline }}</p>
<div class="contact">
<a href="mailto:foodsoft@local-it.org"><i aria-hidden="true" class="fa fa-envelope"></i> Kontakt</a>
<a href="https://git.local-it.org/foodsoft/foodsoft" target="_blank"><i aria-hidden="true" class="fa fa-code"></i> Code</a>
</div>
<div id="benefits">
{{ range where .Site.Pages "Section" "benefits" }}
{{ if in .Path ".md" }}
<div>
<h2><i class="fas {{ .Params.icon }}"></i>{{ .Title }}</h2>
{{ .Content }}
</div>
{{ end }}
{{ end }}
</div>
<img src="foodcoop-explained.jpg" style="width: 1200px"/>
<div class="footer">
{{ with .Site.GetPage "/footer" }}
{{ .Content }}
{{ end }}
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 392 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

@ -0,0 +1 @@
Subproject commit 71dd388ff189c2db13fea86077e61dfb0059fefd