-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathexplore-cc.php
124 lines (124 loc) · 4.22 KB
/
explore-cc.php
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<script>
function toggleCCExplore() {
var element = document.getElementById('cc-explore');
element.classList.toggle('is-active');
}
</script>
<style>
.cc-global-header .open-tab {
display: block;
bottom: -2rem;
}
</style>
<header id="cc-explore" class="cc-global-header">
<div class="container">
<a class="open-tab" onclick="toggleCCExplore()" href="#">Explore CC</a>
<div class="global-header-content">
<div class="level">
<div class="level-left">
<header class="global-header-header">
<a
class="main-logo"
href="https://creativecommons.org"
target="_blank"
><div class="has-text-white">
<svg
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 304 73"
>
<use href="#logomark"></use>
</svg></div
></a>
</header>
</div>
</div>
<div class="columns padding-bottom-normal">
<div class="column is-one-quarter">
<aside class="donate-section">
<h5 class="">Our work relies on you!</h5>
<p class="">Help us keep the internet free and open.</p>
<a
class="button small donate"
href="https://us.netdonor.net/page/6650/donate/1?ea.tracking.id=global-navigation-bar"
><i
class="
icon
cc-letterheart
margin-right-small
is-size-5
padding-top-smaller
"
></i
>Donate now</a
>
</aside>
</div>
<div class="column">
<nav
class="products"
role="navigation"
aria-label="global navigation"
>
<div class="product-list">
<a
class="product-item"
href="https://network.creativecommons.org"
target="_blank"
><strong class="">Global Network</strong
><span class="item-description"
>Join a global community working to strengthen the
Commons</span
></a
><a
class="product-item"
href="https://certificate.creativecommons.org"
target="_blank"
><strong class="">Certificate program</strong
><span class="item-description"
>Become an expert in creating and engaging with openly
licensed materials</span
></a
><a
class="product-item"
href="https://summit.creativecommons.org"
target="_blank"
><strong class="">Global Summit</strong
><span class="item-description"
>Attend our annual event, promoting the power of open
licensing</span
></a
><a
class="product-item"
href="https://creativecommons.org/choose"
target="_blank"
><strong class="">License Chooser</strong
><span class="item-description"
>Get help choosing the appropriate license for your work</span
></a
><a
class="product-item"
href="https://search.creativecommons.org"
target="_blank"
><strong class="">CC Search</strong
><span class="item-description"
>Find openly licensed material for creative and educational
reuse</span
></a
><a
class="product-item"
href="https://opensource.creativecommons.org"
target="_blank"
><strong class="">CC Open Source</strong
><span class="item-description"
>Help us build products that maximize creativity and
innovation</span
></a
>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>