diff options
author | SkyArrow <tommy351@gmail.com> | 2012-01-24 18:24:40 +0100 |
---|---|---|
committer | SkyArrow <tommy351@gmail.com> | 2012-01-24 18:24:40 +0100 |
commit | ee892b908a7e1b3b8c1fccb1c4d8b8d54c94f174 (patch) | |
tree | 2c4fe92f279f887bf30f5dcdd236e1679e1b4525 /source/_includes/header.html | |
parent | f54c3bdd1563d6bbd398c10ad0722396fa2ae75d (diff) | |
download | octopress-theme-jeyzu-ee892b908a7e1b3b8c1fccb1c4d8b8d54c94f174.zip octopress-theme-jeyzu-ee892b908a7e1b3b8c1fccb1c4d8b8d54c94f174.tar.gz |
use site config
Diffstat (limited to 'source/_includes/header.html')
-rw-r--r-- | source/_includes/header.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/source/_includes/header.html b/source/_includes/header.html index ac544be..234ffae 100644 --- a/source/_includes/header.html +++ b/source/_includes/header.html @@ -6,10 +6,18 @@ <input type="hidden" name="q" value="site:{{ site.url | shorthand_url }}"> </form> <div class="social right"> - <a href="http://www.facebook.com/tommy351" title="Facebook">Facebook</a> - <a href="https://plus.google.com/105931860008509594725" title="Google+">Google+</a> - <a href="http://twitter.com/tommy351" title="Twitter">Twitter</a> + {% if site.facebook_user %} + <a href="http://www.facebook.com/{{ site.facebook_user }}" title="Facebook">Facebook</a> + {% endif %} + {% if site.googleplus_user %} + <a href="https://plus.google.com/{{ site.googleplus_user }}" title="Google+">Google+</a> + {% endif %} + {% if site.twitter_user %} + <a href="http://twitter.com/{{ site.twitter_user }}" title="Twitter">Twitter</a> + {% endif %} + {% if site.subscribe_rss %} <a href="{{ site.subscribe_rss }}" title="RSS">RSS</a> + {% endif %} </div> </div> {% include custom/header.html %}
\ No newline at end of file |