mandula (owner)

Revisions

gist: 225889 Download_button fork
public
Public Clone URL: git://gist.github.com/225889.git
Embed All Files: show embed
HTML #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!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>