-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathfooter.html
More file actions
46 lines (45 loc) · 2.18 KB
/
footer.html
File metadata and controls
46 lines (45 loc) · 2.18 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
<footer class="footer">
<script>
function manageConsent() {
if (WcpConsent.siteConsent.isConsentRequired) {
WcpConsent.siteConsent.manageConsent();
}
}
</script>
<div class="container">
<div class="row">
<div class="col-sm-8">
<ul class="links">
<li>
<span class="message">Hello from Seattle and Zürich.</span>
</li>
<li class="github-button-container">
<a class="github-button" href="https://github.com/Microsoft/debug-adapter-protocol" data-icon="octicon-star" data-show-count="true" aria-label="Star Microsoft/debug-adapter-protocol on GitHub">Star</a>
</li>
<li class="github-button-container">
<a class="github-button" href="https://github.com/Microsoft/debug-adapter-protocol/subscription" aria-label="Watch Microsoft/debug-adapter-protocol on GitHub">Watch</a>
</li>
</ul>
</div>
<div class="col-sm-4">
<ul class="links">
<li style="visibility: hidden;" >
<a id="footer-cookie-link" style="cursor: pointer; padding-right:20px" onclick="manageConsent()"
aria-label="Manage cookies">Manage cookies</a>
</li>
<li>
<div class="copyright">
<a id="footer-microsoft-link" class="logo" href="https://www.microsoft.com">
<picture>
<source srcset="{{site.baseurl}}/img/microsoft-logo.png" media="(prefers-color-scheme: dark)"></source>
<img src="{{site.baseurl}}/img/microsoft-logo-inverted.png" height="20" alt="Microsoft">
</picture>
</a>
<span>© {{ site.time | date: '%Y' }} Microsoft</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</footer>