# HG changeset patch # User Brian Neal # Date 1298768597 0 # Node ID 871a54546808337e5727dc5ed67dac5259f1c9cf # Parent 2541d27ca05634c86b0622180a8078df9d6acc26 Created a social side block so we can remove the obtrusive twitter bulletin. diff -r 2541d27ca056 -r 871a54546808 gpp/templates/base.html --- a/gpp/templates/base.html Sun Feb 27 00:28:20 2011 +0000 +++ b/gpp/templates/base.html Sun Feb 27 01:03:17 2011 +0000 @@ -78,6 +78,7 @@ {% cache 60 irc_block %} {% irc_status %} {% endcache %} + {% include 'core/social_block.html' %}
diff -r 2541d27ca056 -r 871a54546808 gpp/templates/core/social_block.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/core/social_block.html Sun Feb 27 01:03:17 2011 +0000 @@ -0,0 +1,8 @@ +{% extends 'side_block.html' %} +{% block block_title %}SG101 on the Web{% endblock %} +{% block block_content %} +

+Follow SurfGuitar101 on Twitter
+Subscribe to me on YouTube +

+{% endblock %} diff -r 2541d27ca056 -r 871a54546808 static/css/base.css --- a/static/css/base.css Sun Feb 27 00:28:20 2011 +0000 +++ b/static/css/base.css Sun Feb 27 01:03:17 2011 +0000 @@ -395,3 +395,13 @@ .pointer { cursor: pointer; } +.centeredImage { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} +.centeredImage img { + margin-top: 3px; + margin-bottom: 3px; +}