Skip to content

Commit

Permalink
using the washed and color versions of the icons with some jquery rol…
Browse files Browse the repository at this point in the history
…ler script
  • Loading branch information
Derick Bailey committed Dec 22, 2009
1 parent eb856ab commit 263f019
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _config.yml
@@ -1,3 +1,3 @@
url: http://albacorebuild.net
url: http://localhost:4000
exclude:
- _source
25 changes: 20 additions & 5 deletions _layouts/master.html
Expand Up @@ -9,8 +9,23 @@

<link href="{{ site.url }}/css/main.css" rel="stylesheet" type="text/css" />
<link href="http://feeds.feedburner.com/AlbacoreBuild" rel="alternate" title="AlbacoreBuild.Net" type="application/atom+xml" />


<script src="{{ site.url }}/scripts/jquery.js" type="text/javascript"></script>

<title>Albacore: {{ page.title }}</title>
<script language="javascript">
$(function() {
$('.rollover').hover(function() {
var currentImg = $(this).attr('src');
$(this).attr('src', $(this).attr('hover'));
$(this).attr('hover', currentImg);
}, function() {
var currentImg = $(this).attr('src');
$(this).attr('src', $(this).attr('hover'));
$(this).attr('hover', currentImg);
});
});
</script>
</head>
<body>
<div id="titlebar">
Expand All @@ -25,10 +40,10 @@
</div>
<div id="sidebar">
<div class="sidebar_item">
<a href="http://github.com/derickbailey/Albacore"><img src="{{ site.url }}/images/github.png" border="0"></a>
<a href="http://groups.google.com/group/albacoredev"><img src="{{ site.url}}/images/google.png" border="0"></a>
<a href="http://twitter.com/albacorebuild"><img src="{{ site.url }}/images/twitter.png" border="0"></a>
<a href="http://feeds.feedburner.com/AlbacoreBuild"><img src="{{ site.url }}/images/rss.png" border="0"></a>
<a href="http://github.com/derickbailey/Albacore"><img class="rollover" src="{{ site.url }}/images/github.png" hover="{{ site.url }}/images/github-color.png" border="0"></a>
<a href="http://groups.google.com/group/albacoredev"><img class="rollover" src="{{ site.url}}/images/google.png" hover="{{ site.url }}/images/google-color.png" border="0"></a>
<a href="http://twitter.com/albacorebuild"><img class="rollover" src="{{ site.url }}/images/twitter.png" hover="{{ site.url }}/images/twitter-color.png" border="0"></a>
<a href="http://feeds.feedburner.com/AlbacoreBuild"><img class="rollover" src="{{ site.url }}/images/rss.png" hover="{{ site.url }}/images/rss-color.png" border="0"></a>
</div>
<div class="sidebar_item">
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
Expand Down
Binary file added images/github-color.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/github.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/google-color.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/google.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/rss-color.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/rss.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/twitter-color.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/twitter.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions scripts/jquery.js

Large diffs are not rendered by default.

0 comments on commit 263f019

Please sign in to comment.