From 2ccdc37511bd0b5c0705b8de7feaecfb1af4813f Mon Sep 17 00:00:00 2001 From: gws Date: Mon, 11 Nov 2024 11:14:15 +0100 Subject: [PATCH] init it cards --- content/it.md | 22 ------------------- content/it/_index.md | 41 +++++++++++++++++++++++++++++++++++ content/it/nextcloud.md | 38 +++++++++++++++++++++++++++++++++ templates/it_section.html | 45 +++++++++++++++++++++++++++++++++++++++ templates/null.html | 5 +++++ 5 files changed, 129 insertions(+), 22 deletions(-) delete mode 100644 content/it.md create mode 100644 content/it/_index.md create mode 100644 content/it/nextcloud.md create mode 100644 templates/it_section.html create mode 100644 templates/null.html diff --git a/content/it.md b/content/it.md deleted file mode 100644 index 2989190..0000000 --- a/content/it.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "IT" -description = "IT Services and Consulting" -weight = 3 -+++ - -## self hosting vs managed hosting - -I offer both... - -## office needs -- collaboration platform -- teams chat -- cloud storage -- email -- internal web - -## Servers -- Databases -- gp-servers -- backups -- nas diff --git a/content/it/_index.md b/content/it/_index.md new file mode 100644 index 0000000..4d09136 --- /dev/null +++ b/content/it/_index.md @@ -0,0 +1,41 @@ ++++ +title = "IT" +description = "IT Services and Consulting" +weight = 3 +template="it_section.html" +[extra] +intro = "derp" ++++ + + +# For the office + + +Nextcloud is a opensource client-server ecosystem for cloudstorage and collaboration. +The nextcloud server can be integrated with OnlyOffice and can provide functionality similar to office365. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/content/it/nextcloud.md b/content/it/nextcloud.md new file mode 100644 index 0000000..6202b9d --- /dev/null +++ b/content/it/nextcloud.md @@ -0,0 +1,38 @@ ++++ +title = "IT" +description = "IT Services and Consulting" +weight = 3 ++++ + + +# For the office + + +Nextcloud is a opensource client-server ecosystem for cloudstorage and collaboration. +The nextcloud server can be integrated with OnlyOffice and can provide functionality similar to office365. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/it_section.html b/templates/it_section.html new file mode 100644 index 0000000..df926aa --- /dev/null +++ b/templates/it_section.html @@ -0,0 +1,45 @@ +{% import "_macros.html" as macros %} +{% extends "index.html" %} + +{% block title %}{{ section.title }} | {{ super() }} {% endblock title %} + +{% block header %} +
+ {% if lang =="en" %} + {% set path = [""] | concat(with=section.components) | join(sep="/") %} + {% else %} + {% set path = [""] | concat(with=section.components | slice(start=1)) | join(sep="/") %} + {% endif %} + + {{ macros::render_header(path=path) }} +
+ +{% endblock header %} + + +{% block content %} + + + +{% endblock content %} \ No newline at end of file diff --git a/templates/null.html b/templates/null.html new file mode 100644 index 0000000..387b8e0 --- /dev/null +++ b/templates/null.html @@ -0,0 +1,5 @@ +{% extends "index.html" %} + +{% block content %} + +{% endblock content %} \ No newline at end of file