-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweets.php
83 lines (54 loc) · 1.71 KB
/
tweets.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
include 'common.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<?php include_once("header_include.php"); ?>
<?php include_once("google_analytics.php"); ?>
<script type="text/javascript">
/* jQuery Methods */
$(function() {
/* feedback_link */
$(document).ready(function(){
$("#feedback_link").click(function(){
$("#input_panel").slideToggle(400);
})
});
});
</script>
<title>LetsPlayGlobalGames - Twitter Feed</title>
</head>
<body onLoad="main()">
<div id="body_container">
<div id="header_container">
<?php include("header.php"); ?>
</div>
<div id="main_wrapper" class="highscores_page">
<div id="inner" align="center" \>
<h2 id="twitter_header" class="page_header">Twitter Feed</h2>
<!-- twitter feed goes here -->
<a class="twitter-timeline" href="https://twitter.com/PlayGlobalGames" data-widget-id="299689197848109057">Tweets by @PlayGlobalGames</a>
<script>
!function(d,s,id){
var js,fjs=d.getElementsByTagName(s)[0];
if(!d.getElementById(id)){
js=d.createElement(s);
js.id=id;
js.src="//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js,fjs);
}
}(document,"script","twitter-wjs");
</script>
</div>
</div><!--main_wrapper-->
<script type="text/javascript">
/* main */
function main() {
}
</script>
<script type="text/javascript" src="/js/social_networking.js"></script>
<?php include_once("common_objects.php"); ?>
</div><!--close the body_container div-->
</body>
</html>