Skip to content

Commit 9ee0572

Browse files
Add imprint. (#99)
* Configurable footer heigh. Add privacy and imprint links in footer. * Add imprint. * Fix imprint link failure.
1 parent 0afa02b commit 9ee0572

4 files changed

Lines changed: 46 additions & 3 deletions

File tree

_docs/imprint.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
permalink: /docs/imprint
3+
title: Imprint
4+
---
5+
6+
# Published by:
7+
8+
eProsima,
9+
10+
Plaza de la Encina 10-11 Nucleo 4 2ª Planta,
11+
12+
28760 Tres Cantos,
13+
14+
Madrid, Spain.
15+
16+
E-mail: info@eprosima.com
17+
18+
Telephone: +34 918043448
19+
20+
Represented by the CEO:
21+
Jaime Martin Losa.
22+
23+
# Edited by:
24+
25+
OFERA Consortium members:
26+
27+
* eProsima.
28+
* Robert Bosch GmbH.
29+
* ŁUKASIEWICZ - Instytut PIAP.
30+
* FIWARE Foundation.
31+
32+
# Disclaimer
33+
34+
The editors made an effort to ensure that the content of this web site is kept up to date, keeping it accurate and complete.
35+
Nevertheless, errors can be present.
36+
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.
37+
38+
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.
39+
40+
Registered trademarks and copyrighted text and images are not (generally) indicated as such on this web site content.
41+
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.

_includes/footer.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<footer class="footer">
22
<div class="container">
3-
3+
<p class="text-center">
4+
<a href="/privacy">privacy</a> | <a href="/docs/imprint">imprint</a>
5+
</p>
46
<p class="text-center">
57
{{ site.title }} {{ site.time | date: '%Y' }} |
68
Powered by <a href="https://github.com/aksakalli/jekyll-doc-theme">Jekyll Doc Theme</a>
79
</p>
8-
<!-- <p class="text-muted">Place sticky footer content here.</p> -->
910
</div>
1011
</footer>

_sass/bootswatch/custom/_variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ $font-size-h3: ceil(($font-size-base * 1.25)) !default; // ~18px
55
$font-size-h4: ceil(($font-size-base * 1.15)) !default; // ~16px
66
$font-size-h5: $font-size-base !default;
77
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
8+
$footer-height: auto !default;

css/main.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ body {
6363
position: absolute;
6464
bottom: 0;
6565
width: 100%;
66-
height: 46px;
66+
height: $footer-height;
6767
padding-top: 10px;
6868
background-color: $gray-lighter;
6969
color: $gray-dark;

0 commit comments

Comments
 (0)