Wordpress:
Go to Presentation and then Theme Editor. You'll need to edit both the 'Main' template that is responsible for the content on the general pages and the 'Post' template that defines individual posts. In the code, the <div> for a post entry will look like this: <div class="entry"><?php the_content('Continue Reading »'); ?></div>. After it, paste this code:
<script src="http://www.windycitizen.com/sites/all/modules/drigg_external/js/windycitizen.js"
type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
show_windycitizen_button(
"<?php the_permalink(); ?>",
"tall",
"<?php the_title(); ?>"
);
</script>
Blogger:
One-click install
Or go to Manage, then Settings, then Template, then Edit HTML and click Expand Widget Templates. Scroll down to the post section and right before this: <$BlogItemBody$> insert the following code:
<script src="http://www.windycitizen.com/sites/all/modules/drigg_external/js/windycitizen.js"
type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
show_windycitizen_button(
"<$BlogItemPermalinkUrl$>",
"tall",
"<$BlogItemTitle$>"
);
</script>
TypePad or Movable Type:
In your Individual Entry Archive template, add the following to your <p class="entry-footer">:
<script src="http://www.windycitizen.com/sites/all/modules/drigg_external/js/windycitizen.js"
type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
show_windycitizen_button(
"<$MTEntryPermalink$>",
"tall",
"<$MTEntryTitle encode_url="1"$>"
);
</script>
Anything else:
Copy and paste the code below into your blog single post template, substituting the URL_TO_STORY_GOES_HERE and STORY_TITLE_GOES_HERE with your system's variables for that info:
<script src="http://www.windycitizen.com/sites/all/modules/drigg_external/js/windycitizen.js"
type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
show_windycitizen_button(
"URL_TO_STORY_GOES_HERE",
"tall",
"STORY_TITLE_GOES_HERE"
);
</script>