We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ee410d + c040261 commit b54c184Copy full SHA for b54c184
1 file changed
index.html
@@ -128,7 +128,20 @@ <h2>
128
</script>
129
130
<script>
131
- var repos = {{ site.github.public_repositories | jsonify }};
+ var repos = [
132
+ {% for repo in site.github.public_repositories %}
133
+ {
134
+ name: "{{repo.name}}",
135
+ html_url: "{{repo.html_url}}",
136
+ description: "{{repo.description}}",
137
+ homepage: "{{repo.homepage}}",
138
+ language: "{{repo.language}}",
139
+ stargazers_count: {{repo.stargazers_count}},
140
+ forks_count: {{repo.forks_count}},
141
+ fork: {{repo.fork}}
142
+ },
143
+ {% endfor %}
144
+ ];
145
146
147
<div class="pagewidth">
0 commit comments