From 549530fd62121a39c83ac5e79058f50639353fea Mon Sep 17 00:00:00 2001 From: Yuya Kusakabe Date: Fri, 26 Dec 2014 23:46:16 +0900 Subject: pelican-bootstrap3: Add support for coderwall badges --- pelican-bootstrap3/EXAMPLES.md | 2 ++ pelican-bootstrap3/README.md | 4 ++++ pelican-bootstrap3/templates/base.html | 1 + pelican-bootstrap3/templates/includes/coderwall-js.html | 15 +++++++++++++++ pelican-bootstrap3/templates/includes/coderwall.html | 7 +++++++ 5 files changed, 29 insertions(+) create mode 100644 pelican-bootstrap3/templates/includes/coderwall-js.html create mode 100644 pelican-bootstrap3/templates/includes/coderwall.html (limited to 'pelican-bootstrap3') diff --git a/pelican-bootstrap3/EXAMPLES.md b/pelican-bootstrap3/EXAMPLES.md index c4cd846..d233699 100644 --- a/pelican-bootstrap3/EXAMPLES.md +++ b/pelican-bootstrap3/EXAMPLES.md @@ -46,3 +46,5 @@ If your website is listed here, but you don't want it to be, let me know and I'l [Jason Antman's Blog](http://blog.jasonantman.com/) by [jantman](https://github.com/jantman) [Bryce Boe](http://bryceboe.com/) by [bboe](https://github.com/bboe) + +[higeblog](http://www.higebu.com/) by [higebu](https://github.com/higebu) diff --git a/pelican-bootstrap3/README.md b/pelican-bootstrap3/README.md index a2a17f5..61b8829 100644 --- a/pelican-bootstrap3/README.md +++ b/pelican-bootstrap3/README.md @@ -210,6 +210,10 @@ The theme can show your most recently active GitHub repos in the sidebar. To ena * `GITHUB_SKIP_FORK` * `GITHUB_SHOW_USER_LINK` +### Coderwall Badges + +The theme can show your [Coderwall](https://coderwall.com/) badges in the sidebar. To enable, provide a `CODERWALL_USER`. + ### Facebook Open Graph In order to make the Facebook like button and other social sharing options work better, the template contains Open Graph metatags like ``. You can disable them by setting `USE_OPEN_GRAPH` to _False_. You can use `OPEN_GRAPH_FB_APP_ID` to provide a Facebook _app id_. diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index ae04fb1..5cbd8cc 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -185,6 +185,7 @@ {% include 'includes/github-js.html' %} +{% include 'includes/coderwall-js.html' %} {% include 'includes/disqus_script.html' %} {% include 'includes/ga.html' %} {% include 'includes/piwik.html' %} diff --git a/pelican-bootstrap3/templates/includes/coderwall-js.html b/pelican-bootstrap3/templates/includes/coderwall-js.html new file mode 100644 index 0000000..1e3a9d5 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/coderwall-js.html @@ -0,0 +1,15 @@ +{% if CODERWALL_USER %} + +{% endif %} 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 %} +
  • +

    Coderwall Badges

    +
    + @{{ CODERWALL_USER }} on coderwall +
  • +{% endif %} -- cgit v1.1