aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/coderwall-js.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/includes/coderwall-js.html')
-rw-r--r--pelican-bootstrap3/templates/includes/coderwall-js.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/pelican-bootstrap3/templates/includes/coderwall-js.html b/pelican-bootstrap3/templates/includes/coderwall-js.html
deleted file mode 100644
index 1e3a9d5..0000000
--- a/pelican-bootstrap3/templates/includes/coderwall-js.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% if CODERWALL_USER %}
- <script type="text/javascript">
- $(document).ready(function(){
- $.getJSON("http://coderwall.com/{{ CODERWALL_USER }}.json?callback=?", function(data){
- for(var i = 0; i < data.data.badges.length ; i++){
- var badge = data.data.badges[i];
- var badge_tag = $("<img />");
- badge_tag.attr("src",badge.badge);
- badge_tag.css("width","50%");
- $("#coderwall_badges").append(badge_tag);
- }
- });
- });
- </script>
-{% endif %}