by Michael Crump via Michael Crump on 12/14/2011 3:59:00 AM
I’ve been asked several times how I added the Tweet Button below to all of my FunnelWeb post. Here is a quick blog post detailing how I did it.
1) Head over to Twiter.com and select the button that you want.
2) You will notice that it generates the following JS/HTML for you.
Please note the line numbers listed above.
3) Copy #1 into your HTML Head section on your FunnelWeb Blog site.
4) Copy #2 into your \Views\Wiki\Page.cshtml into the appendHTML variable defined below (be sure to escape the quotes if you use this method):
@model FunnelWeb.Web.Views.Wiki.PageModel @{ ViewBag.Title = Model.Entry.MetaTitle; } <div class='entry @String.Join(" ", Html.CssKeywordsFor(Model.Entry))'> @{string appendHTML = "<a href=\"https://twitter.com/share\" class=\"twitter-share-button\" data-count=\"horizontal\" data-via=\"mbcrump\">Tweet</a><a href=\"https://twitter.com/mbcrump\" class=\"twitter-follow-button\" data-show-count=\"false\" data-lang=\"en\">Follow mbcrump</a>";} @Html.RenderTrusted(Model.Entry.Body + appendHTML, Model.Entry.Format) </div>
5) Upload the Page.cshtml to your web server and your ready to go!
Easy enough right? You can of course append any HTML to your Page this way. Google Plus, Linked In Share buttons anyone?
Original Post: Adding Tweet Buttons to a FunnelWeb Post
The content of the postings is owned by the respective author. Silverlight Feeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on Silverlight Feeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.