Blog Template 2.0: Twitter Widget for your blog. <body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d5560732631221352938\x26blogName\x3dBlog+Template+2.0\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://blogtemplate20.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://blogtemplate20.blogspot.com/\x26vt\x3d-7942670375567613572', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>
Free Blogger Templates | Home |
.
BlogTemplate20 Free Download Blog Templates
Free Templates
Recent Post(s)
Search Design
Archives
Syndication

AddThis Feed Button

Blog Stats
eXTReMe Tracker
StatCounter tracker
Blogs that link here
Could be useful
Templates Stock
Premium HQ Template
Full Widgetized
Elegant Citrus Fresh
Blue-Dark gradient
Rounded Keko
Fresh Magz Clean
Twitter Style Skin
Travel Logbook
X rated template
BlogArtZine
Cute Girly Cupcake
Brown Magz Style
White Simplicity
Masunurin Simple Rounded
Premium Dashboard
ZinMag News Showcase
Natural Magazine style
Premium RedHat
Money Making Template
Sky dashboard
Premium Blue Sky
Slick Red Web 2.0
Classic w/ Slideshow
Photo Gallery Theme
Theme Showcase
Pro 4 Columns
Neo Simple Green
Club Card Minimalistic
Amature Sexy Template
Feat: Headline Slider
CNN NYT like
Lollipop Woman Stuff
Garland
Papeles Effect
Simple BlueSky
Beach Holiday
Green Light
Glossy Blue
Colorful Transparent
Green Marine
Dark Portfolio blog
Fresh Summer
Valentine Day
Blogy Webby
Azul 2.0
Blogy Freshy
Blogy Illacrimo
Glossy Minimalist
Hello Wiki 2.0
Green Lush Fresh
Kaskus Black
Red Late Show
Red Wine elegant
Blogy Integral
Green Mynix
Red White 2.0
StarCrash web 2.0
Blogy Pro 2 Col.
Blogy Crepusculo
Redish web 2.0
Dark Blue skin
Simple 3 Col.
Beauty Illustration
Fresh Natural
Punk Rock Metal
White Minimalist
K2 Freshy
FireFox Theme
Binary web 2.0
Clear Menu
3 Colomns 2.0
Tabbed menu xml
Tabbed menu classic
iPhone Theme
3 Col Simple
Rounded Corners
Clear Curved Blue
Glossy Glass
Very Web 2.0
Apple Mac skin
Colourful web 2.0
Photoshop CS2 skin
Magazine white
3 Col web 2.0
Blogger Photoblog
PopBlue 3 col.
TypoXP 2.1 skin
Dark Red Glossy
Sandpress 3 col
Elegant Clear web2.0
Elegant Dark web2.0
Rounded tab skin
Fresh blue 2.0
Cute Orange (HOT)
Trendy Blue Marine
Bloggerized AdSense
Orange Yellow Sosuechtig
Blue O2 web 2.0
Premium Blogger
TypoXP2 Standard
18+ Anime Series skin
2 Best Classic skin
NeoSapien New Skin
Simple Glowing Blue Darky
Fresh Green Aura
Ocean Mist Trendy
A new day Elegant
Blue steel 3 columns
Please read our Privacy Policy
Confined space entry dvd
online casino bluebook
online casino gambling guide, to top ranked online casinos and reviews of over 200 gambling related websites. www.onlinecasinobluebook.com also host a casino forum, blog, and casino news articles

Free web 2.0 blogger skins
Spice up your blog by adding our small cool banner inside your blog pages. Simply copy and paste code below. It will not harm your blog, I swear.


Welcome to BlogTemplate20
a blog with free Blogger templates collection.
// Monday, March 31, 2008
Twitter

The famous micro blogging “Twitter” can tell your readers about things happen tou you, what are you doing, and knowing new updates. Using Twitter makes your readers stay up to dated for your blog post and news. Moreover you can post short message and tell what’s going on with you recently. Thus if your readers follow your Twitter update via your url (e.g. http://twitter.com/fachia). But yet, now you can bring it out to be appeared on your blog pages. And this also applies to a Blogger based blog. Next I’ll tell you simple way to do this correctly in simple short steps.

First step to do is picking this code up and paste it on Notepad or other similar text editor software (Knote, and so on).

<!-- start good stuff --> 
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/fachia.json?callback=twitterCallback&amp;count=3&amp;named_obj"></script>
<div id="twitter-box" style="overflow: hidden; /* to hide the overflow of long urls */"> </div>
<script type="text/javascript"><!--

function relative_created_at(time_value) { // thanks to Lionel of rarsh.com for pointing out that Twitter changed their code, and this is the fix which will work in IE
var created_at_time = Date.parse(time_value.replace(" +0000",""));
var relative_time = ( arguments.length > 1 ) ? arguments[1] : new Date();
var wordy_time = parseInt(( relative_time.getTime() - created_at_time ) / 1000) + (relative_time.getTimezoneOffset()*60);
if ( wordy_time < 59 ) {
  return 'lest than 1 minute ago';
  } 
  else if ( wordy_time < 119 ) { // changed because otherwise you get 30 seconds of 1 minutes ago 
  return '1 minute ago';
  } 
  else if ( wordy_time < 3000 ) { // < 50 minutes ago
  return ( parseInt( wordy_time / 60 )).toString() + ' minutes ago';
  } 
  else if ( wordy_time < 5340 ) { // < 89 minutes ago
  return '1 hour ago';
  } 
  else if ( wordy_time < 9000 ) { // < 150 minutes ago
  return 'few hours ago'; 
  }
  else if ( wordy_time < 82800 ) { // < 23 hours ago
  return 'about ' + ( parseInt( wordy_time / 3600 )).toString() + ' hours ago';
  } 
  else if ( wordy_time < 129600 ) { // < 36 hours
  return '1 day ago';
  }
  else if ( wordy_time < 172800 ) { // < 48 hours
  return '2 days ago';
  }
  else {
  return ( parseInt(wordy_time / 86400)).toString() + ' days ago';
  }
  }
  var ul = document.createElement('ul');
  for (var i=0; i < 3 && i < Twitter.posts.length; i++) {
  var post = Twitter.posts[i]; 
  var li = document.createElement('li');
  var showTwitterName = 0;
  var showTimeFirst = 1;
  if ( showTimeFirst == 1) {
  li.appendChild(document.createTextNode(' '));
  var a = document.createElement('a');
  a.setAttribute('href', 'http://twitter.com/fachia/' + 'statuses/' + post.id);
  a.setAttribute('title', 'fachia Dot Com at Twitter.com');
  a.setAttribute('rel', 'nofollow');
  a.appendChild(document.createTextNode(relative_created_at(post.created_at)));
  li.appendChild(a);
  li.appendChild(document.createTextNode(' : '));
  }
  if ( showTwitterName == 1 ) {
  li.appendChild(document.createTextNode(post.user.name + ' '));
  }
  li.appendChild(document.createTextNode(post.text));
  if ( showTimeFirst == 0 ) {
  li.appendChild(document.createTextNode(' ')); 
  var a = document.createElement('a');
  a.setAttribute('href', 'http://twitter.com/fachia/' + 'statuses/' + post.id);
  a.setAttribute('rel', 'nofollow');
  a.setAttribute('title', 'fachia Dot Com at Twitter.com');
  a.appendChild(document.createTextNode(relative_created_at(post.created_at)));
  li.appendChild(a); 
  li.appendChild(document.createTextNode(' : ')); 
  }
  ul.appendChild(li);
  }
  ul.setAttribute('id', 'twitter-list');
  document.getElementById('twitter-box').appendChild(ul);
  -->
</script>
<!-- end experiment good stuff -->

If you’ve done it right then you have to do a little tricky thing. You’ll need to replace the word “fachia” inside the code with your own Twitter username in order to make it works. And it could be done quickly using “Replace” menu, a Notepad’s sophisticated feature. You can find it from Edit > Replace menu. Use "Replace All" to make it quicker.

Notepad

Now login to your Blogger dashboard and aim it at edit layout page (new xml). Make click a new page element at one of side bar section. A popup window should appear with some options inside. You’ve to choose HTML/JavaScript option and click “Add to blog”.

Name your side bar title with Now on Twitter, Recent news, what am I doing or anything else as you want. Now paste the code and click save.

I’d picked this widget code from isnaini.com but I still have no idea where is it originally from. You can see how it works at my personal blog here. Enjoy your new widget!!

Labels: ,



Give us feedback comments
Read 15 comment(s):
  • At April 9, 2008 at 3:28 AM, Blogger Unknown said…
    Thank you! It worked perfectly!

     
  • At April 12, 2008 at 10:18 AM, Blogger Fariez The Fachia said…
    Hi Heather, thanks for dropping comment. basically I don't know exactly where this widget was originally comming from. But I just push the code to be used at any Blogger based blog.

     
  • At September 2, 2009 at 12:26 PM, Blogger Unknown said…
    Blogger Template Nice article.I own a Buisness site registered it's Domain name In http://www.tucktail.com/they provided free Blog for my site

     
  • At December 3, 2009 at 5:34 PM, Anonymous Anonymous said…
    Good day !.
    You re, I guess , perhaps very interested to know how one can reach 2000 per day of income .
    There is no initial capital needed You may commense to get income with as small sum of money as 20-100 dollars.

    AimTrust is what you haven`t ever dreamt of such a chance to become rich
    The company represents an offshore structure with advanced asset management technologies in production and delivery of pipes for oil and gas.

    Its head office is in Panama with affiliates around the world.
    Do you want to become a happy investor?
    That`s your chance That`s what you desire!

    I`m happy and lucky, I began to take up income with the help of this company,
    and I invite you to do the same. It`s all about how to select a proper companion who uses your money in a right way - that`s it!.
    I make 2G daily, and what I started with was a funny sum of 500 bucks!
    It`s easy to start , just click this link http://izilygex.ibnsites.com/tahofug.html
    and lucky you`re! Let`s take our chance together to get rid of nastiness of the life

     
  • At December 20, 2009 at 5:47 AM, Blogger OnlineBrokerReview said…
    I modified the code included in this post to parse tweet text and make all URLs clickable. You can see an example on blog at http://onlinebrokerreview.blogspot.com/. The code can be found at http://pastebin.com/f58a63cd3

     
  • At January 12, 2010 at 1:06 PM, Anonymous Anonymous said…
    Good day, sun shines!
    There have were times of hardship when I felt unhappy missing knowledge about opportunities of getting high yields on investments. I was a dump and downright pessimistic person.
    I have never imagined that there weren't any need in big starting capital.
    Now, I'm happy and lucky , I begin take up real income.
    It gets down to select a correct companion who uses your money in a right way - that is incorporate it in real business, and shares the profit with me.

    You may ask, if there are such firms? I'm obliged to answer the truth, YES, there are. Please get to know about one of them:
    http://theblogmoney.com

     
  • At January 15, 2010 at 5:27 PM, Anonymous Anonymous said…
    Hi there!
    I would like to burn a theme at this forum. There is such a thing, called HYIP, or High Yield Investment Program. It reminds of financial piramyde, but in rare cases one may happen to meet a company that really pays up to 2% daily not on invested money, but from real profits.

    For quite a long time, I earn money with the help of these programs.
    I don't have problems with money now, but there are heights that must be conquered . I get now up to 2G a day , and my first investment was 500 dollars only.
    Right now, I managed to catch a guaranteed variant to make a sharp rise . Visit my blog to get additional info.

    [url=http://theinvestblog.com] Online investment blog[/url]

     
  • At January 19, 2010 at 12:31 PM, Anonymous Anonymous said…
    Sorry for my post .Where i can watch more info about?

     
  • At February 2, 2010 at 3:09 AM, Anonymous Anonymous said…
    Hello!
    You may probably be very interested to know how one can make real money on investments.
    There is no initial capital needed.
    You may begin earning with a sum that usually goes
    for daily food, that's 20-100 dollars.
    I have been participating in one project for several years,
    and I'll be glad to let you know my secrets at my blog.

    Please visit my pages and send me private message to get the info.

    P.S. I make 1000-2000 per daily now.

    http://theinvestblog.com [url=http://theinvestblog.com]Online Investment Blog[/url]

     
  • At February 14, 2010 at 3:48 PM, Anonymous Anonymous said…
    viagra professional uk

     
  • At February 20, 2010 at 2:46 PM, Anonymous Anonymous said…
    ego ops slow environment per working added wo

     
  • At March 12, 2010 at 11:22 PM, Anonymous Anonymous said…
    Glad to materialize here. Good day or night everybody!

    For sure you didn’t here about me yet,
    my name is James F. Collins.
    Generally I’m a social gmabler. recently I take a great interest in online-casino and poker.
    Not long time ago I started my own blog, where I describe my virtual adventures.
    Probably, it will be interesting for you to utilize special software facilitating winnings .
    Please visit my diary. http://allbestcasino.com I’ll be interested on your opinion..

     
  • At April 25, 2010 at 6:50 AM, Anonymous Anonymous said…
    FAMOSAS MEXICANAS DESNUDAS
    [url=http://www.projectopus.com/user/58529]FAMOSAS MEXICANAS DESNUDAS[/url]
    FAMOSAS MEXICANAS DESNUDAS
    [url= http://www.projectopus.com/user/58529 ] FAMOSAS MEXICANAS DESNUDAS [/url]
    LINDSAY LOHAN CLEAVAGE
    [url=http://www.projectopus.com/user/58531]LINDSAY LOHAN CLEAVAGE[/url]
    LINDSAY LOHAN CLEAVAGE
    [url= http://www.projectopus.com/user/58531 ] LINDSAY LOHAN CLEAVAGE [/url]
    NENAS DESNUDAS
    [url=http://www.projectopus.com/user/58533]NENAS DESNUDAS[/url]
    NENAS DESNUDAS
    [url= http://www.projectopus.com/user/58533 ] NENAS DESNUDAS [/url]
    GLORIA TREVI DESNUDA
    [url=http://www.projectopus.com/user/58535]GLORIA TREVI DESNUDA[/url]
    GLORIA TREVI DESNUDA
    [url= http://www.projectopus.com/user/58535 ] GLORIA TREVI DESNUDA [/url]
    SOFIA VERGARA DESNUDA
    [url=http://www.projectopus.com/user/58539]SOFIA VERGARA DESNUDA[/url]
    SOFIA VERGARA DESNUDA
    [url= http://www.projectopus.com/user/58539 ] SOFIA VERGARA DESNUDA [/url]

     
  • At April 27, 2010 at 4:35 PM, Anonymous Anonymous said…
    CELEBRITY NIP SLIPS
    [url=http://my.curse.com/members/LESHA7.aspx]CELEBRITY NIP SLIPS[/url]
    CELEBRITY NIP SLIPS
    [url= http://my.curse.com/members/LESHA7.aspx ] CELEBRITY NIP SLIPS [/url]
    SELMA BLAIR NUDE
    [url=http://my.curse.com/members/LESLEE3.aspx]SELMA BLAIR NUDE[/url]
    SELMA BLAIR NUDE
    [url= http://my.curse.com/members/LESLEE3.aspx ] SELMA BLAIR NUDE [/url]
    BILLIE PIPER NUDE
    [url=http://videoexclg1.vidiLife.com]BILLIE PIPER NUDE[/url]
    BILLIE PIPER NUDE
    [url= http://videoexclg1.vidiLife.com ] BILLIE PIPER NUDE [/url]
    GALLERY OF PARIS HILTON
    [url=http://videoexclg4.vidiLife.com]GALLERY OF PARIS HILTON[/url]
    GALLERY OF PARIS HILTON
    [url= http://videoexclg4.vidiLife.com ] GALLERY OF PARIS HILTON [/url]
    MILEY CYRUS BOOBS
    [url=http://videoexclg5.vidiLife.com]MILEY CYRUS BOOBS[/url]
    MILEY CYRUS BOOBS
    [url= http://videoexclg5.vidiLife.com ] MILEY CYRUS BOOBS [/url]

     
  • At August 20, 2010 at 9:01 PM, Anonymous Anonymous said…
    cheaply california houses
    [url=http://vimeo.com/user4498961]compare hotel prices
    [/url]inexpensively flights to la
    covert hotel deals
    hotels by cost
    [url=http://www.earthday.org/users/48490]cheap family hotels
    [/url]pre-eminence your own motor hotel sacrifice
    air asia online booking
    bed booking australia
    [url=http://www.fairview.org/cty/members/klemot/default.aspx]hotel auteuil tour eiffel
    [/url]forebears
    palinuro
    attend to hotels
    [url=http://www.youthcabinet.org/profile/Josh]jet hotel
    [/url]sale-priced airplane tickets
    extended discontinue pension
    flagship dwelling
    [url=http://www.beautyresearch.com/blogs/alexa/archive/2010/08/15/hotels-and-accomodations.aspx]hotel ca
    [/url]pension ratings
    airlines to
    first men hotel online booking
    [url=http://www.mazdacommunity.com/profiles/blogs/special-hotel-offers-or]cheap birmingham hotels
    [/url]airticket booking
    chambres
    affordable tourist house

     
  • Gadget 2.0

    Tracked by ClickAider