diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2014-12-26 23:46:16 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2014-12-26 23:55:15 +0900 |
commit | 549530fd62121a39c83ac5e79058f50639353fea (patch) | |
tree | c8e4ff696cb4dc81df779e1dd5964b824f462e2d /pelican-bootstrap3/templates/includes/coderwall.html | |
parent | bd9faef09f8176cf72203efd544bd99ef52f1d54 (diff) | |
download | pelican-themes-549530fd62121a39c83ac5e79058f50639353fea.tar.gz |
pelican-bootstrap3: Add support for coderwall badges
Diffstat (limited to 'pelican-bootstrap3/templates/includes/coderwall.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/coderwall.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/coderwall.html b/pelican-bootstrap3/templates/includes/coderwall.html new file mode 100644 index 0000000..2917577 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/coderwall.html @@ -0,0 +1,7 @@ +{% if CODERWALL_USER %}
+ <li class="list-group-item">
+ <h4><i class="fa fa-github-alt fa-lg"></i><span class="icon-label">Coderwall Badges</span></h4>
+ <div id="coderwall_badges"></div>
+ <a href="http://coderwall.com/{{ CODERWALL_USER }}">@{{ CODERWALL_USER }}</a> on coderwall
+ </li>
+{% endif %}
|