Skip to content

Commit

Permalink
[Doc] Fixed malformed HTML code of page footer (#1467)
Browse files Browse the repository at this point in the history
FlorianReimold authored Mar 14, 2024
1 parent c51bc03 commit 3f5cb2a
Showing 1 changed file with 24 additions and 33 deletions.
57 changes: 24 additions & 33 deletions doc/rst/_templates/footer.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eclipse Foundation Links</title>
<style>
.links-container ul {
list-style-type: none;
padding: 0;
}

.links-container ul li {
display: inline;
margin-right: 10px;
}
<style>
.links-container ul {
list-style-type: none;
padding: 0;
}

.links-container ul li:last-child {
margin-right: 0;
}
</style>
</head>
<body>
<div class="links-container">
<h5>Eclipse Foundation</h5>
<ul>
<li><a href="http://www.eclipse.org">Website</a></li>
<li><a href="http://www.eclipse.org/legal/privacy.php">Privacy policy</a></li>
<li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
<li><a href="http://www.eclipse.org/legal/copyright.php">Copyright agent</a></li>
<li><a href="http://www.eclipse.org/legal">Legal</a></li>
</ul>
</div>
</body>
</html>
.links-container ul li {
display: inline;
margin-right: 10px;
}

.links-container ul li:last-child {
margin-right: 0;
}
</style>
<div class="links-container">
<h5>Eclipse Foundation</h5>
<ul>
<li><a href="http://www.eclipse.org">Website</a></li>
<li><a href="http://www.eclipse.org/legal/privacy.php">Privacy policy</a></li>
<li><a href="http://www.eclipse.org/legal/termsofuse.php">Terms of Use</a></li>
<li><a href="http://www.eclipse.org/legal/copyright.php">Copyright agent</a></li>
<li><a href="http://www.eclipse.org/legal">Legal</a></li>
</ul>
</div>

0 comments on commit 3f5cb2a

Please sign in to comment.