-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathHeaderSection.vue
89 lines (73 loc) · 3.24 KB
/
HeaderSection.vue
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<template>
<header>
<div class="masthead">
<h1><a class="identity-logo" href="https://creativecommons.org">Creative Commons</a></h1>
<button class="expand-menu">Menu</button>
<nav class="primary-menu">
<ul>
<li><a href="https://creativecommons.org/about/mission">Who We Are</a></li>
<li><a href="https://creativecommons.org/about">What We Do</a></li>
<li><a href="https://creativecommons.org/share-your-work">Licenses and Tools</a></li>
<li><a href="https://creativecommons.org/blog">Blog</a></li>
<li><a href="https://creativecommons.org/about/support-cc/">Support Us</a></li>
</ul>
</nav>
<nav class="ancilliary-menu">
<ul>
<li><a class="search icon-attach fa-search" href="https://creativecommons.org/?s">Search</a></li>
<li><a class="donate icon-attach fa-heart" href="https://www.classy.org/give/313412/#!/donation/checkout?c_src=website&c_src2=top-of-page-banner" target="_blank">Donate</a></li>
<li><button class="explore">Explore CC</button></li>
</ul>
</nav>
</div>
<div class="explore-panel">
<!-- (optional main CC logo, p, link on non-home site back to main site) -->
<!-- <aside>
<a class="identity-logo" href="#">Creative Commons</a>
<h2>Our Work Relies On You!</h2>
<p>Help us keep the internet free and open.</p>
</aside> -->
<nav class="explore-menu">
<ul>
<li>
<a href="https://network.creativecommons.org/" target="_blank">Global Network</a>
<p>Join a global community working to strengthen the Commons</p>
</li>
<li>
<a href="https://certificate.creativecommons.org/" target="_blank">Certificate</a>
<p>Become an expert in creating and engaging with openly licensed materials</p>
</li>
<li>
<a href="https://summit.creativecommons.org/" target="_blank">Global Summit</a>
<p>Attend our annual event, promoting the power of open licensing</p>
</li>
<li>
<a href="https://search.creativecommons.org/" target="_blank">Search Portal</a>
<p>Find engines to search openly licensed material for creative and educational reuse</p>
</li>
<li>
<a href="https://opensource.creativecommons.org/" target="_blank">Open Source</a>
<p>Help us build products that maximize creativity and innovation</p>
</li>
</ul>
</nav>
</div>
</header>
</template>
<script>
export default {
name: 'HeaderSection',
mounted() {
const exploreButton = document.querySelector('button.explore');
const explorePanel = document.querySelector('.explore-panel');
exploreButton.addEventListener('click', (event) => {
explorePanel.classList.toggle('expand');
});
const menuButton = document.querySelector('button.expand-menu');
const menuPanel = document.querySelector('.primary-menu');
menuButton.addEventListener('click', (event) => {
menuPanel.classList.toggle('expand');
});
},
};
</script>