Skip to content

Commit d6f4f8a

Browse files
committedFeb 24, 2012
Added Twitter feed- displays all tweets and retweets by @ScalaIDE
1 parent db1c5bb commit d6f4f8a

File tree

7 files changed

+442
-14
lines changed

7 files changed

+442
-14
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
_site/
2+
.DS_Store

‎_includes/footer.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
{% include footermenu.txt %}
1+
{% include footermenu.txt %}
22
</body>
33
</html>

‎_includes/frontpage.txt

+3-13
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,9 @@
7171

7272
</div>
7373
<div class="span5">
74-
<!--<h1>Twitter</h1>-->
75-
<script type='text/javascript'>
76-
jQuery(function($){
77-
$(".tweet").tweet({
78-
avatar_size: 32,
79-
count: 4,
80-
username: "ScalaIDE",
81-
template: "{text}{avatar}{join}{time}"
82-
});
83-
});
84-
85-
</script>
86-
<!--<div class="tweet"></div>-->
74+
<h1>Twitter</h1>
75+
<p class="before-twitter">Latest <a href="https://twitter.com/#!/scalaide">@ScalaIDE</a> buzz:</p>
76+
<div id="tweets" class="tweets"></div>
8777
</div>
8878
</div>
8979
</div>

‎_includes/headertop.txt

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
<script src="{{ site.baseurl }}/resources/javascript/jquery.js" type="text/javascript" ></script>
1515
<script src="{{ site.baseurl }}/resources/javascript/bootstrap-dropdown.js" type="text/javascript" ></script>
1616
<script src="{{ site.baseurl }}/resources/javascript/bootstrap-dropdown-app.js" type="text/javascript" ></script>
17+
<script src="{{ site.baseurl }}/resources/javascript/jquery.livetwitter.js" type="text/javascript" ></script>
18+
<script src="{{ site.baseurl }}/resources/javascript/livetwitter.js" type="text/javascript" ></script>
1719

1820
<!-- tweet -->
1921
<script src="{{ site.baseurl }}/resources/javascript/jquery.tweet.js" type="text/javascript" ></script>

‎resources/javascript/jquery.livetwitter.js

+417
Large diffs are not rendered by default.

‎resources/javascript/livetwitter.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
$(function(){
2+
$("#tweets").liveTwitter('ScalaIDE');
3+
});

‎resources/stylesheets/base.css

+15
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,21 @@ body {background-color: #8d8d8d;}
3838
.top-bar div>ul .menu-dropdown .divider,.nav .menu-dropdown .divider,.top-bar div>ul .dropdown-menu .divider,.nav .dropdown-menu .divider{background-color:#222;border-color:#444;}
3939
.top-bar ul .menu-dropdown li a,.top-bar ul .dropdown-menu li a{padding:4px 15px;}
4040

41+
.tweets { position: relative; }
42+
.tweet { position: relative; }
43+
.tweets img { margin-left: -14px; }
44+
.tweet .text { background: rgba(0, 26, 30, 0.7); color: rgba(255, 255, 255, 1); text-shadow: rgba(0, 0, 0, 1) 0px 1px 0px; padding: 10px; margin-bottom: 5px; line-height: 1.2em; word-wrap: break-word !important; display: block; -webkit-box-shadow: rgba(255,255,255,.01) -1px -1px 0px; -moz-box-shadow: rgba(255,255,255,.5) -1px -1px 0px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; }
45+
.tweet .text a { color: #a0e935; }
46+
.tweet .text a:hover { color: #8ad3e5; text-decoration: none;}
47+
.username { position: relative; top: -20px; left: 30px; color: #404040;}
48+
.username a { font-weight: bold; text-decoration: none; color: #00677e; text-shadow:0 1px 0 rgba(255,255,255,.4); }
49+
.username a:hover { color: #404040; }
50+
.time { display: block; position: relative; line-height: 0px; top: -16px; left: 64px; font-size: 80%; }
51+
.time a { color: #777; white-space: nowrap; text-decoration: none; }
52+
.triangle { position: relative; bottom: 9px; left: 40px; height: 0px; width: 1px; margin-left: auto; margin-right: auto; border-top: 16px solid rgba(0, 30, 30, 0.7); border-left: none; border-right: 16px solid transparent; border-bottom: none; }
53+
.before-twitter a { color: #00677e; font-weight:bold; text-shadow:0 1px 0 rgba(255,255,255,.4); }
54+
.before-twitter a:hover { color: #404040; text-decoration: none; }
55+
4156
.btn.large{font-size:26px;line-height:normal;padding:12px 20px 12px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
4257
.btn.success,.alert-message.success{
4358
background-color:#82d84e;

0 commit comments

Comments
 (0)
Please sign in to comment.