junior-jekyll-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +152 -0
  4. data/_includes/ajaxify_content_form.html +30 -0
  5. data/_includes/css/portfolio.css +931 -0
  6. data/_includes/footer.html +109 -0
  7. data/_includes/head.html +113 -0
  8. data/_includes/header.html +116 -0
  9. data/_includes/js/flicker.js +56 -0
  10. data/_includes/js/gh_projects.js +1422 -0
  11. data/_includes/js/plugins.js +10 -0
  12. data/_includes/js/script.js +53 -0
  13. data/_includes/js/util_buttons.js +23 -0
  14. data/_includes/navigation.html +116 -0
  15. data/_includes/pagination.html +92 -0
  16. data/_includes/post_footer.html +9 -0
  17. data/_includes/share_buttons.html +111 -0
  18. data/_includes/social_links.html +53 -0
  19. data/_layouts/about.html +14 -0
  20. data/_layouts/center.html +26 -0
  21. data/_layouts/cv.html +86 -0
  22. data/_layouts/default.html +43 -0
  23. data/_layouts/default_design.html +57 -0
  24. data/_layouts/page.html +17 -0
  25. data/_layouts/paper.html +3 -0
  26. data/_layouts/post-narrow.html +14 -0
  27. data/_layouts/post-wide.html +21 -0
  28. data/_layouts/post.html +93 -0
  29. data/_sass/_animations.scss +60 -0
  30. data/_sass/_base.scss +34 -0
  31. data/_sass/_basscss.scss +25 -0
  32. data/_sass/_blockquotes.scss +20 -0
  33. data/_sass/_clearfix.scss +8 -0
  34. data/_sass/_code.scss +70 -0
  35. data/_sass/_footer.scss +66 -0
  36. data/_sass/_forms.scss +106 -0
  37. data/_sass/_gists.scss +8 -0
  38. data/_sass/_header.scss +40 -0
  39. data/_sass/_links.scss +39 -0
  40. data/_sass/_measure.scss +4 -0
  41. data/_sass/_media-queries.scss +64 -0
  42. data/_sass/_pagination.scss +32 -0
  43. data/_sass/_positions.scss +7 -0
  44. data/_sass/_posts.scss +49 -0
  45. data/_sass/_social-icons.scss +25 -0
  46. data/_sass/_tables.scss +45 -0
  47. data/_sass/_typography.scss +24 -0
  48. data/_sass/_variables.scss +120 -0
  49. data/_sass/basscss/_base-buttons.scss +28 -0
  50. data/_sass/basscss/_base-forms.scss +57 -0
  51. data/_sass/basscss/_base-reset.scss +25 -0
  52. data/_sass/basscss/_base-typography.scss +101 -0
  53. data/_sass/basscss/_buttons-blue.scss +27 -0
  54. data/_sass/basscss/_color-base.scss +28 -0
  55. data/_sass/basscss/_colors.scss +97 -0
  56. data/_sass/basscss/_syntax-highlighting.scss +119 -0
  57. data/_sass/basscss/_utility-headings.scss +37 -0
  58. data/_sass/basscss/_utility-typography.scss +38 -0
  59. data/_sass/basscss/_utility-white-space.scss +182 -0
  60. metadata +145 -0
@@ -0,0 +1,109 @@
1
+ <footer class="center">
2
+ <div class="desktop-footer">
3
+ <div class="footer-each">
4
+ <h5>
5
+ <a href="https://www.google.com/maps/place/Zendesk/@-37.8171779,144.9592809,17z/data=!3m1!4b1!4m5!3m4!1s0x6ad65d4b6c187ceb:0xea7703041c1d49e8!8m2!3d-37.8171822!4d144.9614696" target="_blank">
6
+ <span>CBD</span><br><span>Melbourne</span><br><span>Australia</span></span>
7
+ </a>
8
+ </h5>
9
+ </div>
10
+ <div class="footer-each">
11
+ <h5><a href="tel:+14154175500"><span>+61 429</span><br><span>835 565</span></a></h5>
12
+ </div>
13
+ <div class="footer-each">
14
+ <h5><a href="mailto:newbusiness@junior.io"><span>jbelotti</span><br><span>@zendesk</span><br><span>.com</span></a></h5>
15
+ </div>
16
+ <div class="footer-each">
17
+ <h5><a href="mailto:press@junior.io"><span>jonathon.</span><br><span>bel.</span><br><span>melbourne</span><br><span>@gmail.com</span></a></h5>
18
+ </div>
19
+ <div class="footer-each">
20
+ <h5><a href="https://www.linkedin.com/in/jonathonbelotti/" target="_blank" alt="LinkedIn"><span>LinkedIn</span></a></h5>
21
+ <h5><a href="https://github.com/thundergolfer" target="_blank" alt="Github"><span>Github</span></a></h5>
22
+ <h5><a href="https://twitter.com/jonobelotti_IO" target="_blank" alt="Twitter"><span>Twitter</span></a></h5>
23
+ </div>
24
+ </div>
25
+ </footer>
26
+
27
+ <style>
28
+
29
+ footer .desktop-footer {
30
+ margin-left: auto;
31
+ margin-right: auto;
32
+ }
33
+
34
+ .client-each, .footer-bar, .section, footer .desktop-footer {
35
+ max-width: 45.33563em;
36
+ }
37
+
38
+ footer {
39
+ margin-bottom: 50px;
40
+ visibility: visible;
41
+ -webkit-transform: translateY(0) scale(1);
42
+ opacity: 1;
43
+ transform: translateY(0) scale(1);
44
+ opacity: 1;
45
+ -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
46
+ transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
47
+ }
48
+ </style>
49
+
50
+ <style>
51
+ .home .contact-overlay .contact-a:nth-child(6n+1), .icon-and-text:nth-child(2n+1), footer .desktop-footer .footer-each:nth-child(6n+1) {
52
+ clear: left;
53
+ }
54
+ footer .desktop-footer .footer-each {
55
+ float: left;
56
+ display: block;
57
+ margin-right: 4%;
58
+ width: 14.70196%;
59
+ }
60
+
61
+ footer .desktop-footer .footer-each:first-child {
62
+ margin-left: 4%;
63
+ }
64
+
65
+ footer .footer-each a {
66
+ text-decoration: none;
67
+ background-image: none;
68
+ color: #000;
69
+ font-weight: 300;
70
+ }
71
+
72
+ footer .footer-each a:active, footer .footer-each a:hover {
73
+ outline-width: 0;
74
+ }
75
+
76
+ .founder-each h2, .group-pic, .header-title, .home .contact-overlay .contact-a, .section h1, .section h2, .section h3, .section p, .team small, .title-div, body .home .contact-overlay .contact-a-mob, footer .desktop-footer .footer-each, footer .mobile-footer, footer .mobile-footer .footer-each, nav li {
77
+ text-align: center;
78
+ }
79
+
80
+ .contact-a, .contact-a span, .contact-a-mob span, .footer-each span, footer, sub, sup {
81
+ position: relative;
82
+ }
83
+
84
+ .contact-a span:before, .contact-a-mob span:before, .footer-each span:before {
85
+ content: '';
86
+ position: absolute;
87
+ bottom: 0;
88
+ left: 0;
89
+ width: 100%;
90
+ border-bottom: 2px solid #000;
91
+ transition: .4s;
92
+ -webkit-transform: scaleX(1);
93
+ transform: scaleX(1);
94
+ }
95
+
96
+ .contact-a a:hover span:before, .contact-a-mob a:hover span:before, .footer-each a:hover span:before {
97
+ content: '';
98
+ -webkit-transform: scaleX(0);
99
+ transform: scaleX(0);
100
+ }
101
+
102
+ </style>
103
+
104
+ {% if site.enable_anchorjs %}<!-- AnchorJS -->
105
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.0.0/anchor.min.js"></script>
106
+ <script>
107
+ anchors.options.visible = 'always';
108
+ anchors.add('article h2, article h3, article h5, article h5, article h6');
109
+ </script>{% endif %}
@@ -0,0 +1,113 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta http-equiv="Content-Language" content="en">
5
+ <title>{% if page.title %}{{ page.title | strip_html }} &#8211; {% endif %}{{ site.title | strip_html }}</title>
6
+ <link rel="dns-prefetch" href="//maxcdn.bootstrapcdn.com">
7
+ <link rel="dns-prefetch" href="//cdn.mathjax.org">
8
+ <link rel="dns-prefetch" href="//cdnjs.cloudflare.com">
9
+ <meta name="viewport" content="width=device-width, initial-scale=1">
10
+ <meta name="description" content="{% if page.meta_description %}{{ page.meta_description | xml_escape }}{% elsif page.summary %}{{ page.summary | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
11
+ {% if page.meta_robots %}<meta name="robots" content="{{ page.meta_robots }}">
12
+ {% else %}<meta name="robots" content="all">{% endif %}
13
+ <meta name="author" content="{{ site.author }}">
14
+ {% if page.categories %}<meta name="keywords" content="{{ page.categories | join: ', ' }}">{% endif %}
15
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
16
+ <link rel="alternate" type="application/rss+xml" title="RSS Feed for {{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl }}" />
17
+
18
+ <!-- JQuery -->
19
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
20
+
21
+ <!-- Theme CSS -->
22
+ <link rel="stylesheet" href="{{ "/css/junior.css" | prepend: site.baseurl }}?{{ site.time | date: "%Y%m%d%H%M" }}" type="text/css">
23
+
24
+ <!-- Page-type specific CSS -->
25
+ {% if page.categories contains "project" or page.tags contains "portfolio" %}
26
+ <link rel="stylesheet" href="{{ "/css/960.css" | prepend: site.baseurl }}?{{ site.time | date: "%Y%m%d%H%M" }}" type="text/css">
27
+ <link rel="stylesheet" href="{{ "/css/portfolio.css" | prepend: site.baseurl }}?{{ site.time | date: "%Y%m%d%H%M" }}" type="text/css">
28
+ {% endif %}
29
+
30
+ {% if page.tags contains "resume" %}
31
+ <link href="../css/cv-screen.css" type="text/css" rel="stylesheet" media="screen">
32
+ <link href="../css/cv-print.css" type="text/css" rel="stylesheet" media="print">
33
+ <!-- imports -->
34
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
35
+ <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
36
+ {% endif %}
37
+
38
+ {% if page.tags contains "projects" %}
39
+ <link rel="stylesheet" href="{{ "/css/projects.css" | prepend: site.baseurl }}?{{ site.time | date: "%Y%m%d%H%M" }}" type="text/css">
40
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/emojione/3.0.3/extras/css/emojione.min.css"/>
41
+ {% endif %}
42
+
43
+ <!-- Fonts -->
44
+ {% if site.extended_fonts %}
45
+ <link href="https://fonts.googleapis.com/css?family=Muli:300,400,800" rel="stylesheet">
46
+ <link href='//fonts.googleapis.com/css?family=Lato:900,300&subset=latin-ext,latin' rel='stylesheet' type='text/css'>
47
+ {% else %}
48
+ <link href="https://fonts.googleapis.com/css?family=Muli:300,400,800" rel="stylesheet">
49
+ <link href='//fonts.googleapis.com/css?family=Lato:900,300' rel='stylesheet' type='text/css'>
50
+ {% endif %}
51
+ {% if site.show_social_icons or site.show_sharing_icons %}
52
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
53
+ {% endif %}
54
+
55
+ <!-- MathJax -->
56
+ {% if site.enable_mathjax or page.mathjax == true %}
57
+ <script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
58
+ </script>
59
+ {% endif %}
60
+
61
+ <!-- Verifications -->
62
+ {% if site.google_verification %}
63
+ <meta name="google-site-verification" content="{{ site.google_verification }}" />
64
+ {% endif %}
65
+ {% if site.bing_verification %}
66
+ <meta name="msvalidate.01" content="{{ site.bing_verification }}" />
67
+ {% endif %}
68
+
69
+ <!-- Open Graph -->
70
+ <!-- From: https://github.com/mmistakes/hpstr-jekyll-theme/blob/master/_includes/head.html -->
71
+ <meta property="og:locale" content="{{ site.text.og_locale }}">
72
+ <meta property="og:type" content="article">
73
+ <meta property="og:title" content="{% if page.title %}{{ page.title | xml_escape }}{% else %}{{ site.title | xml_escape }}{% endif %}">
74
+ <meta property="og:description" content="{% if page.description %}{{ page.description | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
75
+ <meta property="og:url" content="{{ site.url }}{{ page.url }}">
76
+ <meta property="og:site_name" content="{{ site.title | xml_escape }}">
77
+
78
+ <!-- Twitter Card -->
79
+ <meta name="twitter:card" content="summary" />
80
+ {% if site.twitter_username %}
81
+ <meta name="twitter:site" content="@{{ site.twitter_username }}" />
82
+ {% endif %}
83
+ <meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" />
84
+ <meta name="twitter:description" content="{% if page.summary %}{{ page.summary }}{% else %}{{ site.description }}{% endif %}" />
85
+ <meta name="twitter:url" content="{{ site.url }}{{ page.url }}" />
86
+
87
+ <!-- Icons -->
88
+ <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
89
+ <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
90
+ <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
91
+ <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
92
+ <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
93
+ <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
94
+ <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
95
+ <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
96
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
97
+ <link rel="icon" type="image/png" href="/favicon-192x192.png" sizes="192x192">
98
+ <link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
99
+ <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
100
+ <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
101
+ <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
102
+
103
+ {% if site.google_analytics %}
104
+ <script type="text/javascript">
105
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
106
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
107
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
108
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
109
+ ga('create', '{{ site.google_analytics }}', 'auto');
110
+ ga('send', 'pageview');
111
+ </script>
112
+ {% endif %}
113
+ </head>
@@ -0,0 +1,116 @@
1
+ <header class="site-header px-responsive">
2
+ <div class="mt2 wrap">
3
+ <nav class="">
4
+ {% include navigation.html %}
5
+ </nav>
6
+ </div>
7
+ </header>
8
+
9
+ <div class="menu-btn">
10
+ <span class="menu-line"></span>
11
+ <span class="menu-line"></span>
12
+ <span class="menu-text">Menu</span>
13
+ </div>
14
+
15
+ <div class="home-btn" onclick="window.location.href = '/'">
16
+ <span class="static-menu-line"></span>
17
+ <span class="home-text">Home</span>
18
+ </div>
19
+
20
+ <style>
21
+ .menu-btn.show, [data-id=home] .menu-btn, .home-btn.show, .home-btn {
22
+ pointer-events: auto; /* not using this block at the moment */
23
+ opacity: 1;
24
+ }
25
+ .header-title span:before, .menu-btn, .home-btn, .menu-text, .home-text, [data-id=home] .menu-btn {
26
+ position: absolute;
27
+ }
28
+ .menu-btn, .home-btn {
29
+ cursor: pointer;
30
+ height: 100px;
31
+ width: 106px;
32
+ z-index: 10000;
33
+ pointer-events: auto;
34
+ top: 0;
35
+ opacity: 1;
36
+ }
37
+
38
+ .home-btn {
39
+ right: 0;
40
+ }
41
+
42
+ .home-btn > a {
43
+ position: relative;
44
+ z-index: 10000;
45
+ }
46
+
47
+ .diagonal-line {
48
+
49
+ }
50
+
51
+ .menu-line:nth-of-type(1), .menu-line:nth-of-type(2),
52
+ .static-menu-line:nth-of-type(1), .static-menu-line:nth-of-type(2) {
53
+ width: 2px;
54
+ height: 85px;
55
+ top: 15%;
56
+ left: 50%;
57
+ -webkit-transform: rotate(135deg);
58
+ transform: rotate(135deg);
59
+ position: absolute;
60
+ background: #000;
61
+ }
62
+
63
+ .static-menu-line:nth-of-type(1) {
64
+ -webkit-transform: rotate(45deg);
65
+ transform: rotate(45deg);
66
+ }
67
+
68
+ [data-id=home] .menu-text {
69
+ visibility: visible;
70
+ }
71
+
72
+ .menu-text, .home-text {
73
+ top: 73%;
74
+ font-size: .75em;
75
+ font-weight: Normal;
76
+ color: #000;
77
+ pointer-events: none;
78
+ visibility: visible; /* this was "hidden" */
79
+ }
80
+
81
+ .home-text { right: 22px; }
82
+ .menu-text { left: 22px; }
83
+
84
+ .menu-text {
85
+ -webkit-transition: all 0.75s ease;
86
+ -moz-transition: all 0.75s ease;
87
+ -o-transition: all 0.75s ease;
88
+ -ms-transition: all 0.75s ease;
89
+ transition: all 0.75s ease;
90
+ }
91
+
92
+ .menu-btn .menu-line:nth-of-type(2) {
93
+ transform: matrix(-0.7071, 0.70711, -0.70711, -0.7071, 0, 0);
94
+ -webkit-transition: all 0.75s ease;
95
+ -moz-transition: all 0.75s ease;
96
+ -o-transition: all 0.75s ease;
97
+ -ms-transition: all 0.75s ease;
98
+ transition: all 0.75s ease;
99
+ }
100
+
101
+ </style>
102
+
103
+ <script>
104
+ $( ".menu-btn" ).click(function() {
105
+ //alert($( this ).css( "transform" ));
106
+ if ( $( ".menu-line:nth-of-type(2)" ).css( "transform" ) == 'matrix(0.71934, 0.694658, -0.694658, 0.71934, 0, 0)' ){
107
+ $(".menu-line:nth-of-type(2)").css("transform","rotate(135deg)");
108
+ $(".menu-text").css("opacity", "1")
109
+ $( "#main-menu" ).css("transform", "translate(0%, -116%) matrix(1, 0, 0, 1, 0, 0)")
110
+ } else {
111
+ $(".menu-line:nth-of-type(2)").css("transform","rotate(44deg)")
112
+ $(".menu-text").css("opacity", "0")
113
+ $( "#main-menu" ).css("transform", "matrix(1, 0, 0, 1, 0, 0)")
114
+ }
115
+ });
116
+ </script>
@@ -0,0 +1,56 @@
1
+ console.log("Yeay");
2
+
3
+ // utility function for returning a promise that resolves after a delay
4
+ function delay(t) {
5
+ return new Promise(function (resolve) {
6
+ setTimeout(resolve, t);
7
+ });
8
+ }
9
+
10
+ Promise.delay = function (fn, t) {
11
+ // fn is an optional argument
12
+ if (!t) {
13
+ t = fn;
14
+ fn = function () {};
15
+ }
16
+ return delay(t).then(fn);
17
+ }
18
+
19
+ Promise.prototype.delay = function (fn, t) {
20
+ // return chained promise
21
+ return this.then(function () {
22
+ return Promise.delay(fn, t);
23
+ });
24
+
25
+ }
26
+
27
+ function black() {
28
+ $(".site, .post, body").css({
29
+ '-webkit-filter': 'invert(1)',
30
+ 'filter': 'invert(1)'
31
+ });
32
+
33
+ return this;
34
+ }
35
+
36
+ function white() {
37
+ $(".site, .post, body").css({
38
+ '-webkit-filter': 'invert(0)',
39
+ 'filter': 'invert(0)'
40
+ });
41
+
42
+ return this;
43
+ }
44
+
45
+ function flicker() {
46
+ console.log("flicker")
47
+ Promise.delay(black, 1000).delay(white, 70).delay(black, 70).delay(white, 70).delay(black, 100).delay(white, 30000);
48
+ console.log("finished");
49
+ }
50
+
51
+ (function(){
52
+ /* The screen stays white for (Interval - (how long flicker() takes)). Here that's about 40 seconds. */
53
+ myInterval = setInterval( "flicker()", 70400 );
54
+ })();
55
+
56
+ console.log("Hay");
@@ -0,0 +1,1422 @@
1
+ jQuery.gitUser = function (username, callback) {
2
+ jQuery.getJSON('https://api.github.com/users/' + username + '/repos?per_page=100&callback=?', callback) //Change per_page according to your need.
3
+ }
4
+
5
+ jQuery.fn.getRepos = function (username) {
6
+ this.html("<h2 style=\"color:#FFF;\">Hold on tight, digging out " + username + "'s repositories...</h2><br>");
7
+
8
+ var target = this;
9
+ $.gitUser(username, function (data) {
10
+ var repos = data.data; // JSON Parsing
11
+ //alert(repos.length); Only for checking how many items are returned.
12
+ sortByForks(repos); //Sorting by forks. You can customize it according to your needs.
13
+ var list = $('<dl/>');
14
+ target.empty().append(list);
15
+ $(repos).each(function () {
16
+ checkfork = this.fork;
17
+ console.log(this)
18
+ if ((this.name != (username.toLowerCase() + '.github.com')) && (checkfork != true)) { //Check for username.github.com repo and for forked projects
19
+ list.append('<dt> \
20
+ <a style="font-size:20px;" href="' + (this.homepage ? this.homepage : this.html_url) + '"><h4 style="display: inline; padding-right: 2%;">/' + this.name + ' </h4></a> \
21
+ <span class="lang" style="background:' + mapLangToColor(this.language) +'"></span> \
22
+ <span class="tag"><i class="fa fa-github fa-2" aria-hidden="true"></i> STARS</span> \
23
+ <a href=' + this.html_url + '><span class="numbertag">' + this.watchers + '</span></a> \
24
+ <span class="tag"><i class="fa fa-github fa-2" aria-hidden="true"></i> FORKS</span> \
25
+ <a href=' + this.html_url + '><span class="numbertag">' + this.forks + '</span></a> \
26
+ <div style="padding-top: 2%;"><p>' + emojione.shortnameToImage(this.description) + (this.homepage ? ('<a href="' + this.homepage + '"> ' + this.homepage + '</a>') : "") + '</p></div> \
27
+ ');
28
+ //Similarly fetch everything else you need.
29
+ }
30
+ });
31
+ });
32
+
33
+ function sortByForks(repos) {
34
+ repos.sort(function (a, b) {
35
+ return b.forks - a.forks; //Descending order for number of forks based sorting.
36
+ });
37
+ }
38
+
39
+ function mapLangToColor(lang) {
40
+ map = {
41
+ "1C Enterprise": {
42
+ "color": "#814CCC",
43
+ "url": "https://github.com/trending?l=1C Enterprise"
44
+ },
45
+ "ABAP": {
46
+ "color": "#E8274B",
47
+ "url": "https://github.com/trending?l=ABAP"
48
+ },
49
+ "ActionScript": {
50
+ "color": "#882B0F",
51
+ "url": "https://github.com/trending?l=as3"
52
+ },
53
+ "Ada": {
54
+ "color": "#02f88c",
55
+ "url": "https://github.com/trending?l=Ada"
56
+ },
57
+ "Agda": {
58
+ "color": "#315665",
59
+ "url": "https://github.com/trending?l=Agda"
60
+ },
61
+ "AGS Script": {
62
+ "color": "#B9D9FF",
63
+ "url": "https://github.com/trending?l=AGS Script"
64
+ },
65
+ "Alloy": {
66
+ "color": "#64C800",
67
+ "url": "https://github.com/trending?l=Alloy"
68
+ },
69
+ "Alpine Abuild": {
70
+ "color": null,
71
+ "url": "https://github.com/trending?l=Alpine Abuild"
72
+ },
73
+ "AMPL": {
74
+ "color": "#E6EFBB",
75
+ "url": "https://github.com/trending?l=AMPL"
76
+ },
77
+ "ANTLR": {
78
+ "color": "#9DC3FF",
79
+ "url": "https://github.com/trending?l=ANTLR"
80
+ },
81
+ "Apex": {
82
+ "color": null,
83
+ "url": "https://github.com/trending?l=Apex"
84
+ },
85
+ "API Blueprint": {
86
+ "color": "#2ACCA8",
87
+ "url": "https://github.com/trending?l=API Blueprint"
88
+ },
89
+ "APL": {
90
+ "color": "#5A8164",
91
+ "url": "https://github.com/trending?l=APL"
92
+ },
93
+ "Apollo Guidance Computer": {
94
+ "color": "#0B3D91",
95
+ "url": "https://github.com/trending?l=Apollo Guidance Computer"
96
+ },
97
+ "AppleScript": {
98
+ "color": "#101F1F",
99
+ "url": "https://github.com/trending?l=AppleScript"
100
+ },
101
+ "Arc": {
102
+ "color": "#aa2afe",
103
+ "url": "https://github.com/trending?l=Arc"
104
+ },
105
+ "Arduino": {
106
+ "color": "#bd79d1",
107
+ "url": "https://github.com/trending?l=Arduino"
108
+ },
109
+ "ASN.1": {
110
+ "color": "#aeead0",
111
+ "url": "https://github.com/trending?l=ASN.1"
112
+ },
113
+ "ASP": {
114
+ "color": "#6a40fd",
115
+ "url": "https://github.com/trending?l=aspx-vb"
116
+ },
117
+ "AspectJ": {
118
+ "color": "#a957b0",
119
+ "url": "https://github.com/trending?l=AspectJ"
120
+ },
121
+ "Assembly": {
122
+ "color": "#6E4C13",
123
+ "url": "https://github.com/trending?l=nasm"
124
+ },
125
+ "ATS": {
126
+ "color": "#1ac620",
127
+ "url": "https://github.com/trending?l=ATS"
128
+ },
129
+ "Augeas": {
130
+ "color": null,
131
+ "url": "https://github.com/trending?l=Augeas"
132
+ },
133
+ "AutoHotkey": {
134
+ "color": "#6594b9",
135
+ "url": "https://github.com/trending?l=AutoHotkey"
136
+ },
137
+ "AutoIt": {
138
+ "color": "#1C3552",
139
+ "url": "https://github.com/trending?l=AutoIt"
140
+ },
141
+ "Awk": {
142
+ "color": null,
143
+ "url": "https://github.com/trending?l=Awk"
144
+ },
145
+ "Batchfile": {
146
+ "color": "#C1F12E",
147
+ "url": "https://github.com/trending?l=bat"
148
+ },
149
+ "Befunge": {
150
+ "color": null,
151
+ "url": "https://github.com/trending?l=Befunge"
152
+ },
153
+ "Bison": {
154
+ "color": "#6A463F",
155
+ "url": "https://github.com/trending?l=Bison"
156
+ },
157
+ "BitBake": {
158
+ "color": null,
159
+ "url": "https://github.com/trending?l=BitBake"
160
+ },
161
+ "BlitzBasic": {
162
+ "color": null,
163
+ "url": "https://github.com/trending?l=BlitzBasic"
164
+ },
165
+ "BlitzMax": {
166
+ "color": "#cd6400",
167
+ "url": "https://github.com/trending?l=BlitzMax"
168
+ },
169
+ "Bluespec": {
170
+ "color": null,
171
+ "url": "https://github.com/trending?l=Bluespec"
172
+ },
173
+ "Boo": {
174
+ "color": "#d4bec1",
175
+ "url": "https://github.com/trending?l=Boo"
176
+ },
177
+ "Brainfuck": {
178
+ "color": "#2F2530",
179
+ "url": "https://github.com/trending?l=Brainfuck"
180
+ },
181
+ "Brightscript": {
182
+ "color": null,
183
+ "url": "https://github.com/trending?l=Brightscript"
184
+ },
185
+ "Bro": {
186
+ "color": null,
187
+ "url": "https://github.com/trending?l=Bro"
188
+ },
189
+ "C": {
190
+ "color": "#555555",
191
+ "url": "https://github.com/trending?l=C"
192
+ },
193
+ "C#": {
194
+ "color": "#178600",
195
+ "url": "https://github.com/trending?l=csharp"
196
+ },
197
+ "C++": {
198
+ "color": "#f34b7d",
199
+ "url": "https://github.com/trending?l=cpp"
200
+ },
201
+ "C2hs Haskell": {
202
+ "color": null,
203
+ "url": "https://github.com/trending?l=C2hs Haskell"
204
+ },
205
+ "Cap'n Proto": {
206
+ "color": null,
207
+ "url": "https://github.com/trending?l=Cap'n Proto"
208
+ },
209
+ "CartoCSS": {
210
+ "color": null,
211
+ "url": "https://github.com/trending?l=CartoCSS"
212
+ },
213
+ "Ceylon": {
214
+ "color": null,
215
+ "url": "https://github.com/trending?l=Ceylon"
216
+ },
217
+ "Chapel": {
218
+ "color": "#8dc63f",
219
+ "url": "https://github.com/trending?l=Chapel"
220
+ },
221
+ "Charity": {
222
+ "color": null,
223
+ "url": "https://github.com/trending?l=Charity"
224
+ },
225
+ "ChucK": {
226
+ "color": null,
227
+ "url": "https://github.com/trending?l=ChucK"
228
+ },
229
+ "Cirru": {
230
+ "color": "#ccccff",
231
+ "url": "https://github.com/trending?l=Cirru"
232
+ },
233
+ "Clarion": {
234
+ "color": "#db901e",
235
+ "url": "https://github.com/trending?l=Clarion"
236
+ },
237
+ "Clean": {
238
+ "color": "#3F85AF",
239
+ "url": "https://github.com/trending?l=Clean"
240
+ },
241
+ "Click": {
242
+ "color": "#E4E6F3",
243
+ "url": "https://github.com/trending?l=Click"
244
+ },
245
+ "CLIPS": {
246
+ "color": null,
247
+ "url": "https://github.com/trending?l=CLIPS"
248
+ },
249
+ "Clojure": {
250
+ "color": "#db5855",
251
+ "url": "https://github.com/trending?l=Clojure"
252
+ },
253
+ "CMake": {
254
+ "color": null,
255
+ "url": "https://github.com/trending?l=CMake"
256
+ },
257
+ "COBOL": {
258
+ "color": null,
259
+ "url": "https://github.com/trending?l=COBOL"
260
+ },
261
+ "CoffeeScript": {
262
+ "color": "#244776",
263
+ "url": "https://github.com/trending?l=CoffeeScript"
264
+ },
265
+ "ColdFusion": {
266
+ "color": "#ed2cd6",
267
+ "url": "https://github.com/trending?l=cfm"
268
+ },
269
+ "ColdFusion CFC": {
270
+ "color": "#ed2cd6",
271
+ "url": "https://github.com/trending?l=cfc"
272
+ },
273
+ "Common Lisp": {
274
+ "color": "#3fb68b",
275
+ "url": "https://github.com/trending?l=Common Lisp"
276
+ },
277
+ "Component Pascal": {
278
+ "color": "#B0CE4E",
279
+ "url": "https://github.com/trending?l=Component Pascal"
280
+ },
281
+ "Cool": {
282
+ "color": null,
283
+ "url": "https://github.com/trending?l=Cool"
284
+ },
285
+ "Coq": {
286
+ "color": null,
287
+ "url": "https://github.com/trending?l=Coq"
288
+ },
289
+ "Crystal": {
290
+ "color": "#776791",
291
+ "url": "https://github.com/trending?l=Crystal"
292
+ },
293
+ "Csound": {
294
+ "color": null,
295
+ "url": "https://github.com/trending?l=Csound"
296
+ },
297
+ "Csound Document": {
298
+ "color": null,
299
+ "url": "https://github.com/trending?l=Csound Document"
300
+ },
301
+ "Csound Score": {
302
+ "color": null,
303
+ "url": "https://github.com/trending?l=Csound Score"
304
+ },
305
+ "CSS": {
306
+ "color": "#563d7c",
307
+ "url": "https://github.com/trending?l=CSS"
308
+ },
309
+ "Cucumber": {
310
+ "color": "#5B2063",
311
+ "url": "https://github.com/trending?l=Cucumber"
312
+ },
313
+ "Cuda": {
314
+ "color": "#3A4E3A",
315
+ "url": "https://github.com/trending?l=Cuda"
316
+ },
317
+ "Cycript": {
318
+ "color": null,
319
+ "url": "https://github.com/trending?l=Cycript"
320
+ },
321
+ "Cython": {
322
+ "color": null,
323
+ "url": "https://github.com/trending?l=Cython"
324
+ },
325
+ "D": {
326
+ "color": "#ba595e",
327
+ "url": "https://github.com/trending?l=D"
328
+ },
329
+ "Dart": {
330
+ "color": "#00B4AB",
331
+ "url": "https://github.com/trending?l=Dart"
332
+ },
333
+ "DIGITAL Command Language": {
334
+ "color": null,
335
+ "url": "https://github.com/trending?l=DIGITAL Command Language"
336
+ },
337
+ "DM": {
338
+ "color": "#447265",
339
+ "url": "https://github.com/trending?l=DM"
340
+ },
341
+ "Dogescript": {
342
+ "color": "#cca760",
343
+ "url": "https://github.com/trending?l=Dogescript"
344
+ },
345
+ "DTrace": {
346
+ "color": null,
347
+ "url": "https://github.com/trending?l=DTrace"
348
+ },
349
+ "Dylan": {
350
+ "color": "#6c616e",
351
+ "url": "https://github.com/trending?l=Dylan"
352
+ },
353
+ "E": {
354
+ "color": "#ccce35",
355
+ "url": "https://github.com/trending?l=E"
356
+ },
357
+ "Eagle": {
358
+ "color": "#814C05",
359
+ "url": "https://github.com/trending?l=Eagle"
360
+ },
361
+ "eC": {
362
+ "color": "#913960",
363
+ "url": "https://github.com/trending?l=ec"
364
+ },
365
+ "ECL": {
366
+ "color": "#8a1267",
367
+ "url": "https://github.com/trending?l=ECL"
368
+ },
369
+ "ECLiPSe": {
370
+ "color": null,
371
+ "url": "https://github.com/trending?l=ECLiPSe"
372
+ },
373
+ "Eiffel": {
374
+ "color": "#946d57",
375
+ "url": "https://github.com/trending?l=Eiffel"
376
+ },
377
+ "EJS": {
378
+ "color": "#a91e50",
379
+ "url": "https://github.com/trending?l=EJS"
380
+ },
381
+ "Elixir": {
382
+ "color": "#6e4a7e",
383
+ "url": "https://github.com/trending?l=Elixir"
384
+ },
385
+ "Elm": {
386
+ "color": "#60B5CC",
387
+ "url": "https://github.com/trending?l=Elm"
388
+ },
389
+ "Emacs Lisp": {
390
+ "color": "#c065db",
391
+ "url": "https://github.com/trending?l=Emacs Lisp"
392
+ },
393
+ "EmberScript": {
394
+ "color": "#FFF4F3",
395
+ "url": "https://github.com/trending?l=EmberScript"
396
+ },
397
+ "EQ": {
398
+ "color": "#a78649",
399
+ "url": "https://github.com/trending?l=EQ"
400
+ },
401
+ "Erlang": {
402
+ "color": "#B83998",
403
+ "url": "https://github.com/trending?l=Erlang"
404
+ },
405
+ "F#": {
406
+ "color": "#b845fc",
407
+ "url": "https://github.com/trending?l=fsharp"
408
+ },
409
+ "Factor": {
410
+ "color": "#636746",
411
+ "url": "https://github.com/trending?l=Factor"
412
+ },
413
+ "Fancy": {
414
+ "color": "#7b9db4",
415
+ "url": "https://github.com/trending?l=Fancy"
416
+ },
417
+ "Fantom": {
418
+ "color": "#dbded5",
419
+ "url": "https://github.com/trending?l=Fantom"
420
+ },
421
+ "Filebench WML": {
422
+ "color": null,
423
+ "url": "https://github.com/trending?l=Filebench WML"
424
+ },
425
+ "Filterscript": {
426
+ "color": null,
427
+ "url": "https://github.com/trending?l=Filterscript"
428
+ },
429
+ "fish": {
430
+ "color": null,
431
+ "url": "https://github.com/trending?l=fish"
432
+ },
433
+ "FLUX": {
434
+ "color": "#88ccff",
435
+ "url": "https://github.com/trending?l=FLUX"
436
+ },
437
+ "Forth": {
438
+ "color": "#341708",
439
+ "url": "https://github.com/trending?l=Forth"
440
+ },
441
+ "FORTRAN": {
442
+ "color": "#4d41b1",
443
+ "url": "https://github.com/trending?l=FORTRAN"
444
+ },
445
+ "FreeMarker": {
446
+ "color": "#0050b2",
447
+ "url": "https://github.com/trending?l=FreeMarker"
448
+ },
449
+ "Frege": {
450
+ "color": "#00cafe",
451
+ "url": "https://github.com/trending?l=Frege"
452
+ },
453
+ "Game Maker Language": {
454
+ "color": "#8fb200",
455
+ "url": "https://github.com/trending?l=Game Maker Language"
456
+ },
457
+ "GAMS": {
458
+ "color": null,
459
+ "url": "https://github.com/trending?l=GAMS"
460
+ },
461
+ "GAP": {
462
+ "color": null,
463
+ "url": "https://github.com/trending?l=GAP"
464
+ },
465
+ "GAS": {
466
+ "color": null,
467
+ "url": "https://github.com/trending?l=GAS"
468
+ },
469
+ "GCC Machine Description": {
470
+ "color": null,
471
+ "url": "https://github.com/trending?l=GCC Machine Description"
472
+ },
473
+ "GDB": {
474
+ "color": null,
475
+ "url": "https://github.com/trending?l=GDB"
476
+ },
477
+ "GDScript": {
478
+ "color": null,
479
+ "url": "https://github.com/trending?l=GDScript"
480
+ },
481
+ "Genshi": {
482
+ "color": null,
483
+ "url": "https://github.com/trending?l=Genshi"
484
+ },
485
+ "Gentoo Ebuild": {
486
+ "color": null,
487
+ "url": "https://github.com/trending?l=Gentoo Ebuild"
488
+ },
489
+ "Gentoo Eclass": {
490
+ "color": null,
491
+ "url": "https://github.com/trending?l=Gentoo Eclass"
492
+ },
493
+ "GLSL": {
494
+ "color": null,
495
+ "url": "https://github.com/trending?l=GLSL"
496
+ },
497
+ "Glyph": {
498
+ "color": "#e4cc98",
499
+ "url": "https://github.com/trending?l=Glyph"
500
+ },
501
+ "Gnuplot": {
502
+ "color": "#f0a9f0",
503
+ "url": "https://github.com/trending?l=Gnuplot"
504
+ },
505
+ "Go": {
506
+ "color": "#375eab",
507
+ "url": "https://github.com/trending?l=Go"
508
+ },
509
+ "Golo": {
510
+ "color": "#88562A",
511
+ "url": "https://github.com/trending?l=Golo"
512
+ },
513
+ "Gosu": {
514
+ "color": "#82937f",
515
+ "url": "https://github.com/trending?l=Gosu"
516
+ },
517
+ "Grace": {
518
+ "color": null,
519
+ "url": "https://github.com/trending?l=Grace"
520
+ },
521
+ "Grammatical Framework": {
522
+ "color": "#79aa7a",
523
+ "url": "https://github.com/trending?l=Grammatical Framework"
524
+ },
525
+ "Groff": {
526
+ "color": "#ecdebe",
527
+ "url": "https://github.com/trending?l=Groff"
528
+ },
529
+ "Groovy": {
530
+ "color": "#e69f56",
531
+ "url": "https://github.com/trending?l=Groovy"
532
+ },
533
+ "Groovy Server Pages": {
534
+ "color": null,
535
+ "url": "https://github.com/trending?l=Groovy Server Pages"
536
+ },
537
+ "Hack": {
538
+ "color": "#878787",
539
+ "url": "https://github.com/trending?l=Hack"
540
+ },
541
+ "Haml": {
542
+ "color": "#ECE2A9",
543
+ "url": "https://github.com/trending?l=Haml"
544
+ },
545
+ "Handlebars": {
546
+ "color": "#01a9d6",
547
+ "url": "https://github.com/trending?l=Handlebars"
548
+ },
549
+ "Harbour": {
550
+ "color": "#0e60e3",
551
+ "url": "https://github.com/trending?l=Harbour"
552
+ },
553
+ "Haskell": {
554
+ "color": "#29b544",
555
+ "url": "https://github.com/trending?l=Haskell"
556
+ },
557
+ "Haxe": {
558
+ "color": "#df7900",
559
+ "url": "https://github.com/trending?l=Haxe"
560
+ },
561
+ "HCL": {
562
+ "color": null,
563
+ "url": "https://github.com/trending?l=HCL"
564
+ },
565
+ "HLSL": {
566
+ "color": null,
567
+ "url": "https://github.com/trending?l=HLSL"
568
+ },
569
+ "HTML": {
570
+ "color": "#e44b23",
571
+ "url": "https://github.com/trending?l=HTML"
572
+ },
573
+ "Hy": {
574
+ "color": "#7790B2",
575
+ "url": "https://github.com/trending?l=Hy"
576
+ },
577
+ "HyPhy": {
578
+ "color": null,
579
+ "url": "https://github.com/trending?l=HyPhy"
580
+ },
581
+ "IDL": {
582
+ "color": "#a3522f",
583
+ "url": "https://github.com/trending?l=IDL"
584
+ },
585
+ "Idris": {
586
+ "color": null,
587
+ "url": "https://github.com/trending?l=Idris"
588
+ },
589
+ "IGOR Pro": {
590
+ "color": null,
591
+ "url": "https://github.com/trending?l=IGOR Pro"
592
+ },
593
+ "Inform 7": {
594
+ "color": null,
595
+ "url": "https://github.com/trending?l=Inform 7"
596
+ },
597
+ "Inno Setup": {
598
+ "color": null,
599
+ "url": "https://github.com/trending?l=Inno Setup"
600
+ },
601
+ "Io": {
602
+ "color": "#a9188d",
603
+ "url": "https://github.com/trending?l=Io"
604
+ },
605
+ "Ioke": {
606
+ "color": "#078193",
607
+ "url": "https://github.com/trending?l=Ioke"
608
+ },
609
+ "Isabelle": {
610
+ "color": "#FEFE00",
611
+ "url": "https://github.com/trending?l=Isabelle"
612
+ },
613
+ "Isabelle ROOT": {
614
+ "color": null,
615
+ "url": "https://github.com/trending?l=Isabelle ROOT"
616
+ },
617
+ "J": {
618
+ "color": "#9EEDFF",
619
+ "url": "https://github.com/trending?l=J"
620
+ },
621
+ "Jasmin": {
622
+ "color": null,
623
+ "url": "https://github.com/trending?l=Jasmin"
624
+ },
625
+ "Java": {
626
+ "color": "#b07219",
627
+ "url": "https://github.com/trending?l=Java"
628
+ },
629
+ "Java Server Pages": {
630
+ "color": null,
631
+ "url": "https://github.com/trending?l=jsp"
632
+ },
633
+ "JavaScript": {
634
+ "color": "#f1e05a",
635
+ "url": "https://github.com/trending?l=JavaScript"
636
+ },
637
+ "JFlex": {
638
+ "color": "#DBCA00",
639
+ "url": "https://github.com/trending?l=JFlex"
640
+ },
641
+ "JSONiq": {
642
+ "color": "#40d47e",
643
+ "url": "https://github.com/trending?l=JSONiq"
644
+ },
645
+ "JSX": {
646
+ "color": null,
647
+ "url": "https://github.com/trending?l=JSX"
648
+ },
649
+ "Julia": {
650
+ "color": "#a270ba",
651
+ "url": "https://github.com/trending?l=Julia"
652
+ },
653
+ "Jupyter Notebook": {
654
+ "color": "#DA5B0B",
655
+ "url": "https://github.com/trending?l=Jupyter Notebook"
656
+ },
657
+ "KiCad": {
658
+ "color": null,
659
+ "url": "https://github.com/trending?l=KiCad"
660
+ },
661
+ "Kotlin": {
662
+ "color": "#F18E33",
663
+ "url": "https://github.com/trending?l=Kotlin"
664
+ },
665
+ "KRL": {
666
+ "color": "#28431f",
667
+ "url": "https://github.com/trending?l=KRL"
668
+ },
669
+ "LabVIEW": {
670
+ "color": null,
671
+ "url": "https://github.com/trending?l=LabVIEW"
672
+ },
673
+ "Lasso": {
674
+ "color": "#999999",
675
+ "url": "https://github.com/trending?l=Lasso"
676
+ },
677
+ "Latte": {
678
+ "color": "#A8FF97",
679
+ "url": "https://github.com/trending?l=Latte"
680
+ },
681
+ "Lean": {
682
+ "color": null,
683
+ "url": "https://github.com/trending?l=Lean"
684
+ },
685
+ "Less": {
686
+ "color": "#A1D9A1",
687
+ "url": "https://github.com/trending?l=Less"
688
+ },
689
+ "Lex": {
690
+ "color": "#DBCA00",
691
+ "url": "https://github.com/trending?l=Lex"
692
+ },
693
+ "LFE": {
694
+ "color": "#004200",
695
+ "url": "https://github.com/trending?l=LFE"
696
+ },
697
+ "LilyPond": {
698
+ "color": null,
699
+ "url": "https://github.com/trending?l=LilyPond"
700
+ },
701
+ "Limbo": {
702
+ "color": null,
703
+ "url": "https://github.com/trending?l=Limbo"
704
+ },
705
+ "Literate Agda": {
706
+ "color": null,
707
+ "url": "https://github.com/trending?l=Literate Agda"
708
+ },
709
+ "Literate CoffeeScript": {
710
+ "color": null,
711
+ "url": "https://github.com/trending?l=litcoffee"
712
+ },
713
+ "Literate Haskell": {
714
+ "color": null,
715
+ "url": "https://github.com/trending?l=lhs"
716
+ },
717
+ "LiveScript": {
718
+ "color": "#499886",
719
+ "url": "https://github.com/trending?l=LiveScript"
720
+ },
721
+ "LLVM": {
722
+ "color": "#185619",
723
+ "url": "https://github.com/trending?l=LLVM"
724
+ },
725
+ "Logos": {
726
+ "color": null,
727
+ "url": "https://github.com/trending?l=Logos"
728
+ },
729
+ "Logtalk": {
730
+ "color": null,
731
+ "url": "https://github.com/trending?l=Logtalk"
732
+ },
733
+ "LOLCODE": {
734
+ "color": "#cc9900",
735
+ "url": "https://github.com/trending?l=LOLCODE"
736
+ },
737
+ "LookML": {
738
+ "color": "#652B81",
739
+ "url": "https://github.com/trending?l=LookML"
740
+ },
741
+ "LoomScript": {
742
+ "color": null,
743
+ "url": "https://github.com/trending?l=LoomScript"
744
+ },
745
+ "LSL": {
746
+ "color": "#3d9970",
747
+ "url": "https://github.com/trending?l=LSL"
748
+ },
749
+ "Lua": {
750
+ "color": "#000080",
751
+ "url": "https://github.com/trending?l=Lua"
752
+ },
753
+ "M": {
754
+ "color": null,
755
+ "url": "https://github.com/trending?l=M"
756
+ },
757
+ "M4": {
758
+ "color": null,
759
+ "url": "https://github.com/trending?l=M4"
760
+ },
761
+ "M4Sugar": {
762
+ "color": null,
763
+ "url": "https://github.com/trending?l=M4Sugar"
764
+ },
765
+ "Makefile": {
766
+ "color": "#427819",
767
+ "url": "https://github.com/trending?l=Makefile"
768
+ },
769
+ "Mako": {
770
+ "color": null,
771
+ "url": "https://github.com/trending?l=Mako"
772
+ },
773
+ "Mask": {
774
+ "color": "#f97732",
775
+ "url": "https://github.com/trending?l=Mask"
776
+ },
777
+ "Mathematica": {
778
+ "color": null,
779
+ "url": "https://github.com/trending?l=Mathematica"
780
+ },
781
+ "Matlab": {
782
+ "color": "#bb92ac",
783
+ "url": "https://github.com/trending?l=Matlab"
784
+ },
785
+ "Max": {
786
+ "color": "#c4a79c",
787
+ "url": "https://github.com/trending?l=max/msp"
788
+ },
789
+ "MAXScript": {
790
+ "color": "#00a6a6",
791
+ "url": "https://github.com/trending?l=MAXScript"
792
+ },
793
+ "Mercury": {
794
+ "color": "#ff2b2b",
795
+ "url": "https://github.com/trending?l=Mercury"
796
+ },
797
+ "Metal": {
798
+ "color": "#8f14e9",
799
+ "url": "https://github.com/trending?l=Metal"
800
+ },
801
+ "MiniD": {
802
+ "color": null,
803
+ "url": "https://github.com/trending?l=MiniD"
804
+ },
805
+ "Mirah": {
806
+ "color": "#c7a938",
807
+ "url": "https://github.com/trending?l=mirah"
808
+ },
809
+ "Modelica": {
810
+ "color": null,
811
+ "url": "https://github.com/trending?l=Modelica"
812
+ },
813
+ "Modula-2": {
814
+ "color": null,
815
+ "url": "https://github.com/trending?l=Modula-2"
816
+ },
817
+ "Module Management System": {
818
+ "color": null,
819
+ "url": "https://github.com/trending?l=Module Management System"
820
+ },
821
+ "Monkey": {
822
+ "color": null,
823
+ "url": "https://github.com/trending?l=Monkey"
824
+ },
825
+ "Moocode": {
826
+ "color": null,
827
+ "url": "https://github.com/trending?l=Moocode"
828
+ },
829
+ "MoonScript": {
830
+ "color": null,
831
+ "url": "https://github.com/trending?l=MoonScript"
832
+ },
833
+ "MTML": {
834
+ "color": "#b7e1f4",
835
+ "url": "https://github.com/trending?l=MTML"
836
+ },
837
+ "MUF": {
838
+ "color": null,
839
+ "url": "https://github.com/trending?l=MUF"
840
+ },
841
+ "mupad": {
842
+ "color": null,
843
+ "url": "https://github.com/trending?l=mupad"
844
+ },
845
+ "Myghty": {
846
+ "color": null,
847
+ "url": "https://github.com/trending?l=Myghty"
848
+ },
849
+ "NCL": {
850
+ "color": "#28431f",
851
+ "url": "https://github.com/trending?l=NCL"
852
+ },
853
+ "Nemerle": {
854
+ "color": "#3d3c6e",
855
+ "url": "https://github.com/trending?l=Nemerle"
856
+ },
857
+ "nesC": {
858
+ "color": "#94B0C7",
859
+ "url": "https://github.com/trending?l=nesC"
860
+ },
861
+ "NetLinx": {
862
+ "color": "#0aa0ff",
863
+ "url": "https://github.com/trending?l=NetLinx"
864
+ },
865
+ "NetLinx+ERB": {
866
+ "color": "#747faa",
867
+ "url": "https://github.com/trending?l=NetLinx+ERB"
868
+ },
869
+ "NetLogo": {
870
+ "color": "#ff6375",
871
+ "url": "https://github.com/trending?l=NetLogo"
872
+ },
873
+ "NewLisp": {
874
+ "color": "#87AED7",
875
+ "url": "https://github.com/trending?l=NewLisp"
876
+ },
877
+ "Nginx": {
878
+ "color": "#9469E9",
879
+ "url": "https://github.com/trending?l=Nginx"
880
+ },
881
+ "Nimrod": {
882
+ "color": "#37775b",
883
+ "url": "https://github.com/trending?l=Nimrod"
884
+ },
885
+ "Nit": {
886
+ "color": "#009917",
887
+ "url": "https://github.com/trending?l=Nit"
888
+ },
889
+ "Nix": {
890
+ "color": "#7e7eff",
891
+ "url": "https://github.com/trending?l=Nix"
892
+ },
893
+ "NSIS": {
894
+ "color": null,
895
+ "url": "https://github.com/trending?l=NSIS"
896
+ },
897
+ "Nu": {
898
+ "color": "#c9df40",
899
+ "url": "https://github.com/trending?l=Nu"
900
+ },
901
+ "NumPy": {
902
+ "color": "#9C8AF9",
903
+ "url": "https://github.com/trending?l=NumPy"
904
+ },
905
+ "Objective-C": {
906
+ "color": "#438eff",
907
+ "url": "https://github.com/trending?l=Objective-C"
908
+ },
909
+ "Objective-C++": {
910
+ "color": "#6866fb",
911
+ "url": "https://github.com/trending?l=Objective-C++"
912
+ },
913
+ "Objective-J": {
914
+ "color": "#ff0c5a",
915
+ "url": "https://github.com/trending?l=Objective-J"
916
+ },
917
+ "OCaml": {
918
+ "color": "#3be133",
919
+ "url": "https://github.com/trending?l=OCaml"
920
+ },
921
+ "Omgrofl": {
922
+ "color": "#cabbff",
923
+ "url": "https://github.com/trending?l=Omgrofl"
924
+ },
925
+ "ooc": {
926
+ "color": "#b0b77e",
927
+ "url": "https://github.com/trending?l=ooc"
928
+ },
929
+ "Opa": {
930
+ "color": null,
931
+ "url": "https://github.com/trending?l=Opa"
932
+ },
933
+ "Opal": {
934
+ "color": "#f7ede0",
935
+ "url": "https://github.com/trending?l=Opal"
936
+ },
937
+ "OpenCL": {
938
+ "color": null,
939
+ "url": "https://github.com/trending?l=OpenCL"
940
+ },
941
+ "OpenEdge ABL": {
942
+ "color": null,
943
+ "url": "https://github.com/trending?l=OpenEdge ABL"
944
+ },
945
+ "OpenRC runscript": {
946
+ "color": null,
947
+ "url": "https://github.com/trending?l=OpenRC runscript"
948
+ },
949
+ "OpenSCAD": {
950
+ "color": null,
951
+ "url": "https://github.com/trending?l=OpenSCAD"
952
+ },
953
+ "Ox": {
954
+ "color": null,
955
+ "url": "https://github.com/trending?l=Ox"
956
+ },
957
+ "Oxygene": {
958
+ "color": "#cdd0e3",
959
+ "url": "https://github.com/trending?l=Oxygene"
960
+ },
961
+ "Oz": {
962
+ "color": "#fab738",
963
+ "url": "https://github.com/trending?l=Oz"
964
+ },
965
+ "Pan": {
966
+ "color": "#cc0000",
967
+ "url": "https://github.com/trending?l=Pan"
968
+ },
969
+ "Papyrus": {
970
+ "color": "#6600cc",
971
+ "url": "https://github.com/trending?l=Papyrus"
972
+ },
973
+ "Parrot": {
974
+ "color": "#f3ca0a",
975
+ "url": "https://github.com/trending?l=Parrot"
976
+ },
977
+ "Parrot Assembly": {
978
+ "color": null,
979
+ "url": "https://github.com/trending?l=Parrot Assembly"
980
+ },
981
+ "Parrot Internal Representation": {
982
+ "color": null,
983
+ "url": "https://github.com/trending?l=Parrot Internal Representation"
984
+ },
985
+ "Pascal": {
986
+ "color": "#E3F171",
987
+ "url": "https://github.com/trending?l=Pascal"
988
+ },
989
+ "PAWN": {
990
+ "color": "#dbb284",
991
+ "url": "https://github.com/trending?l=PAWN"
992
+ },
993
+ "Perl": {
994
+ "color": "#0298c3",
995
+ "url": "https://github.com/trending?l=Perl"
996
+ },
997
+ "Perl6": {
998
+ "color": "#0000fb",
999
+ "url": "https://github.com/trending?l=Perl6"
1000
+ },
1001
+ "PHP": {
1002
+ "color": "#4F5D95",
1003
+ "url": "https://github.com/trending?l=PHP"
1004
+ },
1005
+ "PicoLisp": {
1006
+ "color": null,
1007
+ "url": "https://github.com/trending?l=PicoLisp"
1008
+ },
1009
+ "PigLatin": {
1010
+ "color": "#fcd7de",
1011
+ "url": "https://github.com/trending?l=PigLatin"
1012
+ },
1013
+ "Pike": {
1014
+ "color": "#005390",
1015
+ "url": "https://github.com/trending?l=Pike"
1016
+ },
1017
+ "PLpgSQL": {
1018
+ "color": null,
1019
+ "url": "https://github.com/trending?l=PLpgSQL"
1020
+ },
1021
+ "PLSQL": {
1022
+ "color": "#dad8d8",
1023
+ "url": "https://github.com/trending?l=PLSQL"
1024
+ },
1025
+ "PogoScript": {
1026
+ "color": "#d80074",
1027
+ "url": "https://github.com/trending?l=PogoScript"
1028
+ },
1029
+ "Pony": {
1030
+ "color": null,
1031
+ "url": "https://github.com/trending?l=Pony"
1032
+ },
1033
+ "PostScript": {
1034
+ "color": "#da291c",
1035
+ "url": "https://github.com/trending?l=PostScript"
1036
+ },
1037
+ "POV-Ray SDL": {
1038
+ "color": null,
1039
+ "url": "https://github.com/trending?l=POV-Ray SDL"
1040
+ },
1041
+ "PowerBuilder": {
1042
+ "color": "#8f0f8d",
1043
+ "url": "https://github.com/trending?l=PowerBuilder"
1044
+ },
1045
+ "PowerShell": {
1046
+ "color": null,
1047
+ "url": "https://github.com/trending?l=PowerShell"
1048
+ },
1049
+ "Processing": {
1050
+ "color": "#0096D8",
1051
+ "url": "https://github.com/trending?l=Processing"
1052
+ },
1053
+ "Prolog": {
1054
+ "color": "#74283c",
1055
+ "url": "https://github.com/trending?l=Prolog"
1056
+ },
1057
+ "Propeller Spin": {
1058
+ "color": "#7fa2a7",
1059
+ "url": "https://github.com/trending?l=Propeller Spin"
1060
+ },
1061
+ "Puppet": {
1062
+ "color": "#302B6D",
1063
+ "url": "https://github.com/trending?l=Puppet"
1064
+ },
1065
+ "Pure Data": {
1066
+ "color": "#91de79",
1067
+ "url": "https://github.com/trending?l=Pure Data"
1068
+ },
1069
+ "PureBasic": {
1070
+ "color": "#5a6986",
1071
+ "url": "https://github.com/trending?l=PureBasic"
1072
+ },
1073
+ "PureScript": {
1074
+ "color": "#1D222D",
1075
+ "url": "https://github.com/trending?l=PureScript"
1076
+ },
1077
+ "Python": {
1078
+ "color": "#3572A5",
1079
+ "url": "https://github.com/trending?l=Python"
1080
+ },
1081
+ "QMake": {
1082
+ "color": null,
1083
+ "url": "https://github.com/trending?l=QMake"
1084
+ },
1085
+ "QML": {
1086
+ "color": "#44a51c",
1087
+ "url": "https://github.com/trending?l=QML"
1088
+ },
1089
+ "R": {
1090
+ "color": "#198CE7",
1091
+ "url": "https://github.com/trending?l=R"
1092
+ },
1093
+ "Racket": {
1094
+ "color": "#22228f",
1095
+ "url": "https://github.com/trending?l=Racket"
1096
+ },
1097
+ "Ragel in Ruby Host": {
1098
+ "color": "#9d5200",
1099
+ "url": "https://github.com/trending?l=Ragel in Ruby Host"
1100
+ },
1101
+ "RAML": {
1102
+ "color": "#77d9fb",
1103
+ "url": "https://github.com/trending?l=RAML"
1104
+ },
1105
+ "REALbasic": {
1106
+ "color": null,
1107
+ "url": "https://github.com/trending?l=REALbasic"
1108
+ },
1109
+ "Rebol": {
1110
+ "color": "#358a5b",
1111
+ "url": "https://github.com/trending?l=Rebol"
1112
+ },
1113
+ "Red": {
1114
+ "color": "#f50000",
1115
+ "url": "https://github.com/trending?l=Red"
1116
+ },
1117
+ "Redcode": {
1118
+ "color": null,
1119
+ "url": "https://github.com/trending?l=Redcode"
1120
+ },
1121
+ "Ren'Py": {
1122
+ "color": "#ff7f7f",
1123
+ "url": "https://github.com/trending?l=Ren'Py"
1124
+ },
1125
+ "RenderScript": {
1126
+ "color": null,
1127
+ "url": "https://github.com/trending?l=RenderScript"
1128
+ },
1129
+ "REXX": {
1130
+ "color": null,
1131
+ "url": "https://github.com/trending?l=REXX"
1132
+ },
1133
+ "RobotFramework": {
1134
+ "color": null,
1135
+ "url": "https://github.com/trending?l=RobotFramework"
1136
+ },
1137
+ "Rouge": {
1138
+ "color": "#cc0088",
1139
+ "url": "https://github.com/trending?l=Rouge"
1140
+ },
1141
+ "Ruby": {
1142
+ "color": "#701516",
1143
+ "url": "https://github.com/trending?l=Ruby"
1144
+ },
1145
+ "RUNOFF": {
1146
+ "color": "#665a4e",
1147
+ "url": "https://github.com/trending?l=RUNOFF"
1148
+ },
1149
+ "Rust": {
1150
+ "color": "#dea584",
1151
+ "url": "https://github.com/trending?l=Rust"
1152
+ },
1153
+ "Sage": {
1154
+ "color": null,
1155
+ "url": "https://github.com/trending?l=Sage"
1156
+ },
1157
+ "SaltStack": {
1158
+ "color": "#646464",
1159
+ "url": "https://github.com/trending?l=SaltStack"
1160
+ },
1161
+ "SAS": {
1162
+ "color": "#B34936",
1163
+ "url": "https://github.com/trending?l=SAS"
1164
+ },
1165
+ "Sass": {
1166
+ "color": "#CF649A",
1167
+ "url": "https://github.com/trending?l=Sass"
1168
+ },
1169
+ "Scala": {
1170
+ "color": "#c22d40",
1171
+ "url": "https://github.com/trending?l=Scala"
1172
+ },
1173
+ "Scheme": {
1174
+ "color": "#1e4aec",
1175
+ "url": "https://github.com/trending?l=Scheme"
1176
+ },
1177
+ "Scilab": {
1178
+ "color": null,
1179
+ "url": "https://github.com/trending?l=Scilab"
1180
+ },
1181
+ "SCSS": {
1182
+ "color": "#CF649A",
1183
+ "url": "https://github.com/trending?l=SCSS"
1184
+ },
1185
+ "Self": {
1186
+ "color": "#0579aa",
1187
+ "url": "https://github.com/trending?l=Self"
1188
+ },
1189
+ "Shell": {
1190
+ "color": "#89e051",
1191
+ "url": "https://github.com/trending?l=bash"
1192
+ },
1193
+ "ShellSession": {
1194
+ "color": null,
1195
+ "url": "https://github.com/trending?l=ShellSession"
1196
+ },
1197
+ "Shen": {
1198
+ "color": "#120F14",
1199
+ "url": "https://github.com/trending?l=Shen"
1200
+ },
1201
+ "Slash": {
1202
+ "color": "#007eff",
1203
+ "url": "https://github.com/trending?l=Slash"
1204
+ },
1205
+ "Slim": {
1206
+ "color": "#ff8f77",
1207
+ "url": "https://github.com/trending?l=Slim"
1208
+ },
1209
+ "Smali": {
1210
+ "color": null,
1211
+ "url": "https://github.com/trending?l=Smali"
1212
+ },
1213
+ "Smalltalk": {
1214
+ "color": "#596706",
1215
+ "url": "https://github.com/trending?l=Smalltalk"
1216
+ },
1217
+ "Smarty": {
1218
+ "color": null,
1219
+ "url": "https://github.com/trending?l=Smarty"
1220
+ },
1221
+ "SMT": {
1222
+ "color": null,
1223
+ "url": "https://github.com/trending?l=SMT"
1224
+ },
1225
+ "SourcePawn": {
1226
+ "color": "#5c7611",
1227
+ "url": "https://github.com/trending?l=SourcePawn"
1228
+ },
1229
+ "SQF": {
1230
+ "color": "#3F3F3F",
1231
+ "url": "https://github.com/trending?l=SQF"
1232
+ },
1233
+ "SQLPL": {
1234
+ "color": null,
1235
+ "url": "https://github.com/trending?l=SQLPL"
1236
+ },
1237
+ "Squirrel": {
1238
+ "color": "#800000",
1239
+ "url": "https://github.com/trending?l=Squirrel"
1240
+ },
1241
+ "SRecode Template": {
1242
+ "color": "#348a34",
1243
+ "url": "https://github.com/trending?l=SRecode Template"
1244
+ },
1245
+ "Stan": {
1246
+ "color": "#b2011d",
1247
+ "url": "https://github.com/trending?l=Stan"
1248
+ },
1249
+ "Standard ML": {
1250
+ "color": "#dc566d",
1251
+ "url": "https://github.com/trending?l=Standard ML"
1252
+ },
1253
+ "Stata": {
1254
+ "color": null,
1255
+ "url": "https://github.com/trending?l=Stata"
1256
+ },
1257
+ "SuperCollider": {
1258
+ "color": "#46390b",
1259
+ "url": "https://github.com/trending?l=SuperCollider"
1260
+ },
1261
+ "Swift": {
1262
+ "color": "#ffac45",
1263
+ "url": "https://github.com/trending?l=Swift"
1264
+ },
1265
+ "SystemVerilog": {
1266
+ "color": "#DAE1C2",
1267
+ "url": "https://github.com/trending?l=SystemVerilog"
1268
+ },
1269
+ "Tcl": {
1270
+ "color": "#e4cc98",
1271
+ "url": "https://github.com/trending?l=Tcl"
1272
+ },
1273
+ "Tcsh": {
1274
+ "color": null,
1275
+ "url": "https://github.com/trending?l=Tcsh"
1276
+ },
1277
+ "Terra": {
1278
+ "color": "#00004c",
1279
+ "url": "https://github.com/trending?l=Terra"
1280
+ },
1281
+ "TeX": {
1282
+ "color": "#3D6117",
1283
+ "url": "https://github.com/trending?l=TeX"
1284
+ },
1285
+ "Thrift": {
1286
+ "color": null,
1287
+ "url": "https://github.com/trending?l=Thrift"
1288
+ },
1289
+ "TLA": {
1290
+ "color": null,
1291
+ "url": "https://github.com/trending?l=TLA"
1292
+ },
1293
+ "Turing": {
1294
+ "color": "#cf142b",
1295
+ "url": "https://github.com/trending?l=Turing"
1296
+ },
1297
+ "TXL": {
1298
+ "color": null,
1299
+ "url": "https://github.com/trending?l=TXL"
1300
+ },
1301
+ "TypeScript": {
1302
+ "color": "#2b7489",
1303
+ "url": "https://github.com/trending?l=TypeScript"
1304
+ },
1305
+ "Unified Parallel C": {
1306
+ "color": "#4e3617",
1307
+ "url": "https://github.com/trending?l=Unified Parallel C"
1308
+ },
1309
+ "Uno": {
1310
+ "color": null,
1311
+ "url": "https://github.com/trending?l=Uno"
1312
+ },
1313
+ "UnrealScript": {
1314
+ "color": "#a54c4d",
1315
+ "url": "https://github.com/trending?l=UnrealScript"
1316
+ },
1317
+ "UrWeb": {
1318
+ "color": null,
1319
+ "url": "https://github.com/trending?l=UrWeb"
1320
+ },
1321
+ "Vala": {
1322
+ "color": "#fbe5cd",
1323
+ "url": "https://github.com/trending?l=Vala"
1324
+ },
1325
+ "VCL": {
1326
+ "color": null,
1327
+ "url": "https://github.com/trending?l=VCL"
1328
+ },
1329
+ "Verilog": {
1330
+ "color": "#b2b7f8",
1331
+ "url": "https://github.com/trending?l=Verilog"
1332
+ },
1333
+ "VHDL": {
1334
+ "color": "#adb2cb",
1335
+ "url": "https://github.com/trending?l=VHDL"
1336
+ },
1337
+ "VimL": {
1338
+ "color": "#199f4b",
1339
+ "url": "https://github.com/trending?l=vim"
1340
+ },
1341
+ "Visual Basic": {
1342
+ "color": "#945db7",
1343
+ "url": "https://github.com/trending?l=Visual Basic"
1344
+ },
1345
+ "Volt": {
1346
+ "color": "#1F1F1F",
1347
+ "url": "https://github.com/trending?l=Volt"
1348
+ },
1349
+ "Vue": {
1350
+ "color": "#2c3e50",
1351
+ "url": "https://github.com/trending?l=Vue"
1352
+ },
1353
+ "Web Ontology Language": {
1354
+ "color": "#9cc9dd",
1355
+ "url": "https://github.com/trending?l=Web Ontology Language"
1356
+ },
1357
+ "WebIDL": {
1358
+ "color": null,
1359
+ "url": "https://github.com/trending?l=WebIDL"
1360
+ },
1361
+ "wisp": {
1362
+ "color": "#7582D1",
1363
+ "url": "https://github.com/trending?l=wisp"
1364
+ },
1365
+ "X10": {
1366
+ "color": "#4B6BEF",
1367
+ "url": "https://github.com/trending?l=X10"
1368
+ },
1369
+ "xBase": {
1370
+ "color": "#403a40",
1371
+ "url": "https://github.com/trending?l=xBase"
1372
+ },
1373
+ "XC": {
1374
+ "color": "#99DA07",
1375
+ "url": "https://github.com/trending?l=XC"
1376
+ },
1377
+ "Xojo": {
1378
+ "color": null,
1379
+ "url": "https://github.com/trending?l=Xojo"
1380
+ },
1381
+ "XPages": {
1382
+ "color": null,
1383
+ "url": "https://github.com/trending?l=XPages"
1384
+ },
1385
+ "XProc": {
1386
+ "color": null,
1387
+ "url": "https://github.com/trending?l=XProc"
1388
+ },
1389
+ "XQuery": {
1390
+ "color": "#5232e7",
1391
+ "url": "https://github.com/trending?l=XQuery"
1392
+ },
1393
+ "XS": {
1394
+ "color": null,
1395
+ "url": "https://github.com/trending?l=XS"
1396
+ },
1397
+ "XSLT": {
1398
+ "color": "#EB8CEB",
1399
+ "url": "https://github.com/trending?l=XSLT"
1400
+ },
1401
+ "Xtend": {
1402
+ "color": null,
1403
+ "url": "https://github.com/trending?l=Xtend"
1404
+ },
1405
+ "Yacc": {
1406
+ "color": "#4B6C4B",
1407
+ "url": "https://github.com/trending?l=Yacc"
1408
+ },
1409
+ "Zephir": {
1410
+ "color": "#118f9e",
1411
+ "url": "https://github.com/trending?l=Zephir"
1412
+ },
1413
+ "Zimpl": {
1414
+ "color": null,
1415
+ "url": "https://github.com/trending?l=Zimpl"
1416
+ }
1417
+ }
1418
+ lang = map[lang]
1419
+ color = (!lang ? false : lang['color'])
1420
+ return (!color ? "gray" : color)
1421
+ }
1422
+ };