diff --git a/config.toml b/config.toml index 799026a3ac7950ae0a9601819e65aea466559643..6c0993d71f0efd8308be281f271250f0736f6759 100644 --- a/config.toml +++ b/config.toml @@ -57,3 +57,11 @@ googleAnalytics = "GTM-WLHTXFF" parent = "community" name = "Slack" url = "https://join.slack.com/t/soafee/shared_invite/zt-12e17668h-DttNpOtyFNi5H1udojYmtg" + + +[[menu.footer]] + name = "Accessability" + url = "/legal/accessability/" +[[menu.footer]] + name = "Privacy" + url = "/legal/privacy_policy/" diff --git a/content/legal/accessability.md b/content/legal/accessability.md new file mode 100644 index 0000000000000000000000000000000000000000..77416d06b091d34e421715f17150119fbdc5c11e --- /dev/null +++ b/content/legal/accessability.md @@ -0,0 +1,17 @@ +--- +Title: Accessability +--- + +# Accessibility + +## Statement +The SOAFEE SIG is committed to providing websites that are accessible to the widest possible audience, regardless of technology or ability. The SOAFEE SIG is actively working to increase the accessibility and usability of soafee.io and associated websites and in doing so adhere to many of the available standards and guidelines. + +## Web initiative +This website endeavors to conform to level AA of the World Wide Web Consortium (W3C) Web Content Accessibility Guidelines 2.0. These guidelines explain how to make web content more accessible for people with disabilities. Conformance with these guidelines will help make the web more user friendly for all people. + +## W3C standards +This website has been built using code compliant with W3C standards for HTML and CSS. The website displays correctly in current browsers and using standards compliant HTML/CSS code means any future browsers should also display it correctly. This website also aims to conform to the [W3C Web Web Accessability Initiative](https://www.w3.org/WAI/fundamentals/) + +## Exceptions +Whilst the SOAFEE SIG strives to adhere to the accepted guidelines and standards for accessibility and usability, it is not always possible to do so in all areas of this website. We are continually seeking out solutions that will bring all areas of the website up to the same level of overall accessibility. In the meantime should you experience any difficulty in accessing the soafee.io website, please contact us via the [SOAFEE Slack channel](https://soafee.slack.com). diff --git a/content/legal/privacy_policy.md b/content/legal/privacy_policy.md index b4e43393420585ba7871f295297b60b524368fd2..ebea5bb3034ccb202cdd48137f56ef012a17a03f 100644 --- a/content/legal/privacy_policy.md +++ b/content/legal/privacy_policy.md @@ -18,7 +18,7 @@ It does not apply to third-party applications, websites, products, services or s ### Data you provide -Out website does ask for or store any personal data. +Out website does not ask for or store any personal data. ### Data we automatically collect @@ -26,10 +26,12 @@ When you visit our website we automatically collect and store information about Cookies we use are: +{{< table >}} |Company/Provider | Purpose | |-----------------|---------| | Google | Analytics tracking (via Google Tag Manager) | +{{< /table >}} ## How we use Personal Data we collect -Our website does not collect any personal data. \ No newline at end of file +Our website does not collect any personal data. However we may store data you give us through third party websites (such as Zoom webinars). If you want to know what data we hold on you, or wish to request we remove any data about you, please make a request [using this form](https://privacyportal-cdn.onetrust.com/dsarwebform/4230c274-73e7-42ff-86c2-f30227e11c55/e9942c90-78a0-41fb-88b2-aba5374e2b30.html). diff --git a/themes/soafee/layouts/partials/footer.html b/themes/soafee/layouts/partials/footer.html index 8716db9a74deb20ab13a67191afe1be5d5b14801..8de736ed487dabde94ee7b2c781ed3d1b21fb10e 100644 --- a/themes/soafee/layouts/partials/footer.html +++ b/themes/soafee/layouts/partials/footer.html @@ -1 +1,19 @@ - \ No newline at end of file + + \ No newline at end of file diff --git a/themes/soafee/layouts/shortcodes/table.html b/themes/soafee/layouts/shortcodes/table.html new file mode 100644 index 0000000000000000000000000000000000000000..7e9cec63e023ac8e2af428778551ebbd48effa27 --- /dev/null +++ b/themes/soafee/layouts/shortcodes/table.html @@ -0,0 +1,14 @@ +{{ $htmlTable := .Inner | markdownify }} + +{{ $table_class := .Get "table_class" | default "table table-striped table-hover" }} +{{ $thead_class := .Get "thead_class" | default "table-dark" }} +{{ $old_class := "" }} + +{{ $new_class := printf "
" $table_class }} +{{ $htmlTable = replace $htmlTable $old_class $new_class }} +{{ $old_thead := "" }} +{{ $new_thead := printf "" $thead_class }} +{{ $htmlTable = replace $htmlTable $old_thead $new_thead }} +
+{{ $htmlTable | safeHTML }} +
\ No newline at end of file