Skip to content

Commit

Permalink
Update default.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KimJunyoung77 authored Dec 8, 2024
1 parent 50a0df7 commit 8f4898f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@

<body>
{% include navbar.html %}
{% include showcase.html %}
{% include about.html %}
{% include contact.html %}
<!--Footer begins here-->

<!-- Content Section -->
<main>
{{ content }}
</main>

{% include footer.html %}
</body>
<script>
var navItems = document.getElementsByClassName('navbar-item');
var heroes = document.getElementsByClassName('hero');
const viewOffset = 200;
const viewOffset = 200;

window.addEventListener("scroll", function (event) {
var scroll = this.scrollY;
Expand All @@ -38,4 +40,4 @@
});
</script>

</html>
</html>

0 comments on commit 8f4898f

Please sign in to comment.