Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ### Summary of Most Important Changes The primary changes involve modifying the visibility of sections within the `activeSections` array in the `Index.cshtml` file. Specifically, the "sessions" section has been hidden, and the "schedule" section has been made visible. This adjustment likely indicates a shift in the webpage's focus, emphasizing the schedule over the sessions. ### List of Changes 1. **Visibility of "sessions" Section**: - Changed from `true` (visible) to `false` (hidden). - **Reference**: `Index.cshtml` 2. **Visibility of "schedule" Section**: - Changed from `false` (hidden) to `true` (visible). - **Reference**: `Index.cshtml` * ### Summary of Important Changes The primary changes to the `_Layout.cshtml` file involve updates to the navigation menu. Specifically, the "Sessions" menu item has been commented out, and a new "Schedule" menu item has been added. The other menu items remain unchanged. ### List of Changes 1. **Commented Out "Sessions" Menu Item**: - The "Sessions" link, which previously pointed to `"/@slug#sessions"`, has been commented out using Razor syntax (`@* ... *@`), making it inactive. - **Reference**: `@* <li><a href="/@slug#sessions">Sessions</a></li> *@` 2. **Added "Schedule" Menu Item**: - A new "Schedule" link has been added to the navigation bar, pointing to `"/@slug#schedule"`. - **Reference**: `<li><a href="/@slug#schedule">Schedule</a></li>` 3. **Unchanged Menu Items**: - The "Tickets" and "Code of Conduct" menu items remain unchanged, ensuring continuity in the navigation structure. - **Reference**: `<li><a href="/@slug#tickets">Tickets</a></li>` and `<li><a href="/@slug#codeofconduct">Code of Conduct</a></li>` These changes ensure that the navigation menu is updated to reflect the new structure while maintaining the integrity of the existing links.
- Loading branch information