From da3007bf99d77a58d0e2ab5780fa4a79d668cfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Tue, 7 Dec 2021 09:11:36 +0100 Subject: [PATCH] Add the Frequently Asked Questions page --- config.toml | 4 ++++ content/faq.md | 12 ++++++++++++ layouts/shortcodes/newtabref.html | 1 + 3 files changed, 17 insertions(+) create mode 100644 content/faq.md create mode 100644 layouts/shortcodes/newtabref.html diff --git a/config.toml b/config.toml index 1e7a8d75..c0da74ea 100644 --- a/config.toml +++ b/config.toml @@ -44,4 +44,8 @@ theme = "beautifulhugo" name = "References" url = "references" weight = 4 +[[menu.main]] + name = "FAQ" + url = "faq" + weight = 5 diff --git a/content/faq.md b/content/faq.md new file mode 100644 index 00000000..62805c45 --- /dev/null +++ b/content/faq.md @@ -0,0 +1,12 @@ +--- +title: Frequently Asked Questions +draft: false +--- +# How to export geometry data? + +You need to use the `Export geometries` button below the geometry select box. +This button allows to export geometries as a {{< newtabref href="https://en.wikipedia.org/wiki/ZIP_(file_format)" title="ZIP" >}} file containing all the selected molecular geometries in {{< newtabref href="https://wikipedia.org/wiki/XYZ_file_format" title="xyz" >}} format. + +# How to export values? + +Above each table there is an `Export table` button which allows to export the data of the chosen table as {{< newtabref href="https://wikipedia.org/wiki/Comma-separated_values" title="CSV" >}} file. \ No newline at end of file diff --git a/layouts/shortcodes/newtabref.html b/layouts/shortcodes/newtabref.html new file mode 100644 index 00000000..2306e5f3 --- /dev/null +++ b/layouts/shortcodes/newtabref.html @@ -0,0 +1 @@ +{{ .Get "title" }} \ No newline at end of file