This repository was archived by the owner on Mar 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathhome_nav.html
More file actions
52 lines (45 loc) · 2.08 KB
/
home_nav.html
File metadata and controls
52 lines (45 loc) · 2.08 KB
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
46
47
48
49
50
51
52
{% assign reg = site.data.conference_registration[site.data.conference_registration.status] %}
<nav class="home-nav nav-container">
<!-- ## TABLET & DESKTOP NAV ### -->
<section class="nav-section">
<nav class="middleHeader">
<ul>
<li><a href="index.html#conference" class="link">Conference</a></li>
<li><a href="index.html#own-your-expertise" class="link">Own Your Expertise</a></li>
<li><a href="index.html#chapters" class="link">Chapters</a></li>
<li><a href="index.html#sponsors" class="link">Sponsors</a></li>
<li><a href="index.html#code-of-conduct" class="link">Code of Conduct</a></li>
<li><a href="https://writespeakcode-2019conference.eventbrite.com" target="_blank" class="link">Register Now</a></li>
</ul>
</nav>
</section>
<!-- ## MOBILE NAV ## -->
<header id="mobileNav">
<div class="qcContainer clearfix">
<div class="col-6 col">
<a id="mobile-cta" href="{{ reg.register_link }}" target="_blank" rel="noopener" class="video register-cta cta button">{{ reg.tickets_text }}</a>
</div>
<div class="col-6 col">
<div id="qcOpenNav" class="tips" title="NAVIGATION"></div>
</div>
</div>
<nav>
<aside id="qcSiteNav">
<div class="box">
<h4>Navigation</h4>
<ul id="qcPriNav">
<li class="active"><a href="#">Top</a></li>
<li><a href="index.html#conference" class="link">Conference</a></li>
<li><a href="index.html#own-your-expertise" class="link">Own Your Expertise</a></li>
<li><a href="index.html#chapters" class="link">Chapters</a></li>
<li><a href="index.html#sponsors" class="link">Sponsors</a></li>
<li><a href="index.html#code-of-conduct" class="link">Code of Conduct</a></li>
<li id="nav-register"><a href="{{ reg.register_link }}" class="video" target="_blank" rel="noopener">{{ reg.tickets_text }}</a></li>
</ul>
<div id="qcCloseNav"></div>
</div>
</aside>
</nav>
</header>
<!-- ### SITE NAV END ### -->
</nav>