Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/webapp/WEB-INF/jsp/head-meta.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!-- Global Stylesheets-- always needed -->
Copy link

Copilot AI Dec 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The HTML comment is missing a space after the double hyphens. HTML comments should have a space after the opening -- and before the closing -- for proper formatting. The comment should read <!-- Global Stylesheets -- always needed -->.

Suggested change
<!-- Global Stylesheets-- always needed -->
<!-- Global Stylesheets -- always needed -->

Copilot uses AI. Check for mistakes.
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/layout.css" />

<!-- Standard ICO favicon -->
<link rel="icon" type="image/x-icon" href="${pageContext.request.contextPath}/favicon.ico" />

Expand Down
4 changes: 3 additions & 1 deletion src/main/webapp/WEB-INF/jsp/header.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<!-- Center: Navigation -->
<div class="cf-nav" aria-label="Main navigation">
<ul class="cf-nav-list">
<a href="${pageContext.request.contextPath}/challenges" class="cf-nav-link">Challenges</a>
<li class="cf-nav-item">
<a href="${pageContext.request.contextPath}/challenges" class="cf-nav-link">Challenges</a>
</li>

<li class="cf-nav-item cf-nav-item-has-menu">
<a class="cf-nav-link" href="#">
Expand Down