Skip to content

Instantly share code, notes, and snippets.

@mandula
Created November 4, 2009 07:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandula/225889 to your computer and use it in GitHub Desktop.
Save mandula/225889 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>My Twitter Feed</title>
</head>
<body>
<!-- Paste twitter feed here -->
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 6,
interval: 6000,
width: 'auto',
height: 490,
theme: {
shell: {
background: '#ffffff',
color: '#d20906'
},
tweets: {
background: '#ffffff',
color: '#282525',
links: '#0d88da'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: false,
avatars: false,
behavior: 'all'
}
}).render().setUser('MyTwitterUsername').start();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment