-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add links required by Eclipse to website footer
Signed-off-by: Martin Perina <mperina@redhat.com>
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block footer %} | ||
<!-- Add original footer content --> | ||
{{ super() }} | ||
<!-- Add custom footer --> | ||
<footer class="md-footer"> | ||
<div class="md-footer-meta"> | ||
<div class="md-footer-meta__inner md-grid"> | ||
<div class="md-copyright"> </div> | ||
<div class="md-copyright"> | ||
<a href="https://eclipse.org/" target="_blank" rel="noopener">Eclipse Foundation</a> | ||
| | ||
<a href="https://eclipse.org/legal/privacy.php" target="_blank" rel="noopener">Privacy Policy</a> | ||
| | ||
<a href="https://eclipse.org/legal/termsofuse.php" target="_blank" rel="noopener">Terms of Use</a> | ||
| | ||
<a href="https://eclipse.org/legal/copyright.php" target="_blank" rel="noopener">Copyright Agent</a> | ||
| | ||
<a href="https://eclipse.org/legal/" target="_blank" rel="noopener">Legal</a> | ||
| | ||
<a href="https://github.com/eclipse-bluechi/bluechi?tab=LGPL-2.1-1-ov-file#readme" target="_blank" rel="noopener">License</a> | ||
| | ||
<a href="https://eclipse.org/security/" target="_blank" rel="noopener">Report a Vulnerability</a> | ||
</div> | ||
<div class="md-copyright"> </div> | ||
</div> | ||
</div> | ||
</footer> | ||
{% endblock %} |