forked from ASSETS-Conference/assets2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
45 lines (45 loc) · 1.73 KB
/
menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<a href="index.html"
><picture id="nav-logo">
<source srcset="imgs/logo_horizontal-dark.svg" media="(prefers-color-scheme: dark)" />
<img src="imgs/logo_horizontal-light.svg" alt="Assets 2025 logo" /> </picture
></a>
<button id="menu-toggle" aria-label="Toggle menu">
<span class="hamburger"></span>
</button>
<div id="menu-container">
<ul class="main-menu">
<li class="mobile-only"><a href="/" data-page="home">Home</a></li>
<li class="has-submenu">
<a
aria-expanded="false"
aria-haspopup="true"
role="button"
data-page="authors"
href="call_for_papers.html"
>Authors</a
>
<ul class="secondary-menu">
<li><a href="call_for_papers.html">Call for Papers</a></li>
<li><a href="technical_papers.html">Technical Papers</a></li>
<li><a href="posters_and_demos.html">Posters and Demonstrations</a></li>
<li><a href="workshops.html">Workshops</a></li>
<li><a href="experience_reports.html">Experience Reports</a></li>
<li><a href="doctoral_consortium.html">Doctoral Consortium</a></li>
<li>
<a href="student_research_competition.html">Student Research Competition</a>
</li>
</ul>
</li>
<li><a href="attending.html" data-page="attending">Attending</a></li>
<li><a href="organizers.html" data-page="organizers">Organizers</a></li>
<li class="has-submenu">
<a href="sponsors.html" aria-expanded="false" aria-haspopup="true" data-page="sponsors"
>Sponsors</a
>
<ul class="secondary-menu">
<li><a href="about_sponsorship.html">About Sponsorship</a></li>
</ul>
</li>
<li><a href="volunteer.html" data-page="volunteer">Volunteer</a></li>
</ul>
</div>