diff --git a/.gitignore b/.gitignore index 2bbdbfe..1141f09 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .direnv result +public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..c758f30 --- /dev/null +++ b/config.toml @@ -0,0 +1,17 @@ +# The URL the site will be built for +base_url = "https://sondell.org" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = false + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here +icon = "icon" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..e650c31 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,5 @@ ++++ +title = "Selfhosted Services" ++++ + + diff --git a/content/nextcloud/_index.md b/content/nextcloud/_index.md new file mode 100644 index 0000000..2dcff85 --- /dev/null +++ b/content/nextcloud/_index.md @@ -0,0 +1,10 @@ ++++ +title = "Nextcloud" +[extra] +icon ="./nextcloud_icon_14.png" ++++ + +Nextcloud is a suite of client-server software for creating and using file +hosting services. Our nextcloud server is integrated with OnlyOffice and can +provide functionality similar to Dropbox, Office 365 or Google Drive. + diff --git a/content/nextcloud/footer/1desktop.md b/content/nextcloud/footer/1desktop.md new file mode 100644 index 0000000..d07da1e --- /dev/null +++ b/content/nextcloud/footer/1desktop.md @@ -0,0 +1,7 @@ ++++ +title = "googleplay" ++++ + + +

Desktop App

+
diff --git a/content/nextcloud/footer/_index.md b/content/nextcloud/footer/_index.md new file mode 100644 index 0000000..f05d887 --- /dev/null +++ b/content/nextcloud/footer/_index.md @@ -0,0 +1,21 @@ ++++ +title= "footer" +template ="footer.html" +sort_by = "slug" ++++ + +#### Get Started + +

+Download the app for your device and login with the server adress: + + https://cloud.sondell.org/ + + +

diff --git a/content/nextcloud/footer/googleplay.md b/content/nextcloud/footer/googleplay.md new file mode 100644 index 0000000..cca3da4 --- /dev/null +++ b/content/nextcloud/footer/googleplay.md @@ -0,0 +1,10 @@ ++++ +title = "googleplay" ++++ + + + Download from Google Play + + diff --git a/content/nextcloud/footer/ios.md b/content/nextcloud/footer/ios.md new file mode 100644 index 0000000..0996404 --- /dev/null +++ b/content/nextcloud/footer/ios.md @@ -0,0 +1,12 @@ ++++ +title = "ios store" ++++ + + + the Nextcloud iOS files app + + diff --git a/content/nextcloud/footer/webapp.md b/content/nextcloud/footer/webapp.md new file mode 100644 index 0000000..020a96b --- /dev/null +++ b/content/nextcloud/footer/webapp.md @@ -0,0 +1,9 @@ ++++ +title = "googleplay" ++++ + + + Demo of the Nextcloud iOS files app + diff --git a/content/oldnext.md b/content/oldnext.md new file mode 100644 index 0000000..b141b1b --- /dev/null +++ b/content/oldnext.md @@ -0,0 +1,11 @@ ++++ +title = "Nextcloud" +[extra] +icon ="./nextcloud_icon_14.png" ++++ + +

+Nextcloud is a suite of client-server software for creating and using file +hosting services. Our nextcloud server is integrated with OnlyOffice and can +provide functionality similar to Dropbox, Office 365 or Google Drive. +

diff --git a/flake.nix b/flake.nix index d806910..fb73cd9 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,7 @@ dev_serve imagemagick ffmpeg + zola ]; }; }); diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..11dab0c --- /dev/null +++ b/templates/base.html @@ -0,0 +1,17 @@ + + + + + + + + + Sondell + + + + {% block content %} + {% endblock %} + + + diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..7d7e489 --- /dev/null +++ b/templates/footer.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} + +{% endblock content %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..957be60 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} + +{% block content %} +

+ Selfhosted Services +

+ + + + +{% endblock content %}