From 5ae1844c193b1e0f836686e4d5e525345ab057fa Mon Sep 17 00:00:00 2001 From: Borja Outerelo Date: Thu, 23 Jan 2020 15:09:10 +0100 Subject: [PATCH 1/3] Configurable footer heigh. Add privacy and imprint links in footer. --- _includes/footer.html | 5 +++-- _sass/bootswatch/custom/_variables.scss | 1 + css/main.scss | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index 1a7cca5d..d616afff 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,10 +1,11 @@ diff --git a/_sass/bootswatch/custom/_variables.scss b/_sass/bootswatch/custom/_variables.scss index 7153d965..b30e4ff7 100644 --- a/_sass/bootswatch/custom/_variables.scss +++ b/_sass/bootswatch/custom/_variables.scss @@ -5,3 +5,4 @@ $font-size-h3: ceil(($font-size-base * 1.25)) !default; // ~18px $font-size-h4: ceil(($font-size-base * 1.15)) !default; // ~16px $font-size-h5: $font-size-base !default; $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px +$footer-height: auto !default; diff --git a/css/main.scss b/css/main.scss index abcfa27d..4e1ebca0 100755 --- a/css/main.scss +++ b/css/main.scss @@ -63,7 +63,7 @@ body { position: absolute; bottom: 0; width: 100%; - height: 46px; + height: $footer-height; padding-top: 10px; background-color: $gray-lighter; color: $gray-dark; From 58ee72b1d9889f45411703c4a35bd2d69af6ca9f Mon Sep 17 00:00:00 2001 From: Borja Outerelo Date: Thu, 23 Jan 2020 15:35:48 +0100 Subject: [PATCH 2/3] Add imprint. --- _docs/imprint.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 _docs/imprint.md diff --git a/_docs/imprint.md b/_docs/imprint.md new file mode 100644 index 00000000..9f8a2332 --- /dev/null +++ b/_docs/imprint.md @@ -0,0 +1,41 @@ +--- +permalink: /imprint +title: Imprint +--- + +# Published by: + +eProsima, + +Plaza de la Encina 10-11 Nucleo 4 2ª Planta, + +28760 Tres Cantos, + +Madrid, Spain. + +E-mail: info@eprosima.com + +Telephone: +34 918043448 + +Represented by the CEO: +Jaime Martin Losa. + +# Edited by: + +OFERA Consortium members: + +* eProsima. +* Robert Bosch GmbH. +* ŁUKASIEWICZ - Instytut PIAP. +* FIWARE Foundation. + +# Disclaimer + +The editors made an effort to ensure that the content of this web site is kept up to date, keeping it accurate and complete. +Nevertheless, errors can be present. +The editors and publisher(s) do not give any warranty in terms of the accuracy or completeness of material on this web site and disclaim all liability for loss or damage incurred derived from the use of content obtained from this web. + +The publisher neither the editors can assume any liability for the content of external pages. The owner of those external pages, in the case, is the sole responsible for their content. + +Registered trademarks and copyrighted text and images are not (generally) indicated as such on this web site content. +The absence of such indications in no way implies that these names, images or text belong to the public domain, their original ownership is keeped untouched. \ No newline at end of file From 18a321ca1ab08a11546811ee54563b3fe536494e Mon Sep 17 00:00:00 2001 From: Borja Outerelo Date: Thu, 23 Jan 2020 15:55:49 +0100 Subject: [PATCH 3/3] Fix imprint link failure. --- _docs/imprint.md | 2 +- _includes/footer.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_docs/imprint.md b/_docs/imprint.md index 9f8a2332..32e8a116 100644 --- a/_docs/imprint.md +++ b/_docs/imprint.md @@ -1,5 +1,5 @@ --- -permalink: /imprint +permalink: /docs/imprint title: Imprint --- diff --git a/_includes/footer.html b/_includes/footer.html index d616afff..7be5a48a 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,7 +1,7 @@