Browse Source

added faq and imprint

added footer (style is not perfect now)
pull/429/head
lumapu 2 years ago
parent
commit
9f2fc54bba
  1. 1
      .gitignore
  2. 6
      config.toml
  3. 24
      content/faq/index.md
  4. 2
      content/getting_started/index.md
  5. 25
      content/imprint/index.md
  6. 3
      layouts/_default/baseof.html
  7. 19
      layouts/partials/footer.html
  8. 4
      static/css/style.css

1
.gitignore

@ -0,0 +1 @@
/public

6
config.toml

@ -16,10 +16,14 @@ title = 'AhoyDTU'
name = "Getting started"
url = "/getting_started/"
weight = 2
[[menu.main]]
name = "FAQ"
url = "/faq/"
weight = 3
[[menu.main]]
name = "About"
url = "/about/"
weight = 3
weight = 4
# [[menu.main]]
# name = "Blog"
# url = "/blog/"

24
content/faq/index.md

@ -0,0 +1,24 @@
---
title: "FAQ"
date: 2022-10-26T23:02:43Z
tags: []
draft: false
---
### Firmware
Q: Wo finde ich die aktuelle (stabile) Firmware?
A: Releases können hier gefunden werden: https://github.com/lumapu/ahoy/releases/
Q: Ich habe von Development Builds gehört, wo kann ich die finden und herunterladen?
A: Die Development Builds werden automatisch erstellt und sind in Github unter [Actions](https://github.com/lumapu/ahoy/actions) zu finden. Für den Download muss man bei Github eingeloggt sein. Man bekommt ein Zip mit den Firmwares für ESP8266 und ESP32.
### Logging, Daten
Q: Kann Ahoy die geloggten Daten abspeichern und vorhalten? Wenn ja wie lange?
A: Nein Ahoy ist eine DTU (data transfer unit), die nur als Brücke zwischen Wechselrichter und Hausautomatisierung zu sehen ist.

2
content/getting_started/index.md

@ -27,6 +27,6 @@ The hardware insists only in two modules:
## Software / Firmware
The firmware can be found on [](https://github.com/lumapu/ahoy). Point to the releases section on the right part of the page and download the zip-file. It contains binaries for both ESP models.
The firmware can be found on [Github](https://github.com/lumapu/ahoy). Point to the releases section on the right part of the page and download the zip-file. It contains binaries for both ESP models.
### Flash

25
content/imprint/index.md

@ -0,0 +1,25 @@
---
title: "Impressum"
date: 2022-10-26T22:49:15Z
tags: []
draft: false
---
### Kontakt
* E-Mail: ahoy@lpusch.de
* Probleme melden: [Github Issues](https://github.com/lumapu/ahoy/issues)
### Haftung für Inhalte
Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte wird jedoch keine Gewähr übernehmen.
### Urheberrecht
Alle Inhalte dieser Website, sofern auf nicht auf der jeweiligen Seite anders ausgezeichnet, unterliegen der CC BY-NC-SA 4.0
### Datenschutz
Die Nutzung dieser Webseite ist ohne Angabe personenbezogener Daten möglich.
Diese Website wird auf [GitHub](https://github.com/lumapu/ahoy/tree/gh-pages-src) gehostet, es gelten die entsprechenden Richtlinien von GitHub
### Cookies
Diese Website benutzt keine Cookies.

3
layouts/_default/baseof.html

@ -2,11 +2,14 @@
<html lang="en">
{{ partial "head.html" . }}
<body>
<div id="body">
{{ partial "nav.html" . }}
<div class="container">
<main id="main">
{{ block "main" . }}{{ end }}
</main>
</div>
</div>
{{ partial "footer.html" . }}
</body>
</html>

19
layouts/partials/footer.html

@ -0,0 +1,19 @@
<footer class="text-center text-lg-start bg-light text-muted">
<div class="row mt-3">
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<div class="text-center p-4">
© 2022
</div>
</div>
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<div class="text-center p-4">
{{ .Site.Title }}
</div>
</div>
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<div class="text-center p-4">
<a href="/ahoy/imprint">Imprint</a>
</div>
</div>
</div>
</footer>

4
static/css/style.css

@ -1,3 +1,7 @@
html, body {
height: 100%;
}
tr {
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;

Loading…
Cancel
Save