Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Jul 24, 2026. It is now read-only.

Latest commit

 

History

History
History
55 lines (48 loc) · 1.79 KB

File metadata and controls

55 lines (48 loc) · 1.79 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!-- This should be inserted in the page *before* any page-specific JS -->
<script src="/assets/js/jquery-3.2.1.min.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
{% for js_name in page.extra_js %}<script src="/assets/js/{{ js_name }}"></script>{% endfor %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-77346638-1', 'codefordc.org');
ga('set', 'forceSSL', true);
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<script>
//highlights current page in sitewide nav (_navbar.html)
$(document).ready(function(){
$("#navbar-nav a").each(function() {
if (this.href == window.location.href ||
this.href + "index.html" == window.location.href ||
this.href == window.location.href + "index.html" ) {
$(this).parent().addClass("active");
}
});
});
</script>
{% if page.deeplink == true %}
<script>
// add anchors for headings, based on http://ben.balter.com/2014/03/13/pages-anchor-links/
$(function() {
return $("h2, h3, h4, h5, h6").each(function(i, el) {
var $el, icon, id;
$el = $(el);
text = $el.text();
if ($el.attr('id')) {
id = $el.attr('id');
} else {
id = text.split(' ').join('-');
$el.attr('id', id);
}
icon = '<i class="fa fa-link"></i>';
if (id) {
return $el.prepend($("<a />").addClass("deeplink").attr("href", "#" + id).html(icon));
}
});
});
</script>
{% endif %}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.