Skip to content

Commit a79a788

Browse files
authored
Merge pull request #24 from madhuramendis/main
Update home page layout
2 parents 50bc3aa + c57c7f2 commit a79a788

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

_layouts/homepage.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>OpenChoreo | The Open-Source Internal Developer Platform for Platform Engineers</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="robots" content="noindex">
8+
9+
<meta name="robots" content="noindex">
10+
11+
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
12+
13+
<link rel="stylesheet" href="{{ '/css/bootstrap.min.css' | relative_url }}">
14+
<link rel="stylesheet" href="{{ '/css/openchoreo.css' | relative_url }}">
15+
16+
17+
18+
</head>
19+
<body>
20+
{% include nav.html %}
21+
22+
{{ content }}
23+
24+
{% include footer.html %}
25+
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> -->
26+
27+
28+
29+
30+
31+
{% include scripts.html %}
32+
33+
<script>
34+
$(document).ready(function () {
35+
$('.tooltip-container').each(function () {
36+
const $container = $(this);
37+
const $target = $container.find('.tooltip-target');
38+
const $tooltip = $container.find('.custom-tooltip');
39+
40+
$target.on('mouseenter', function () {
41+
$tooltip.fadeIn(150);
42+
});
43+
44+
$target.on('mouseleave', function () {
45+
$tooltip.fadeOut(150);
46+
});
47+
});
48+
});
49+
</script>
50+
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)