Browse code

Add arrows to project links

Philip I. Thomas authored on 19/10/2012 at 05:44:03
Showing 1 changed files
... ...
@@ -336,11 +336,11 @@ function project($name,$look,$code) {
336 336
 	echo '<li style="padding-top: 12px">'.$name;
337 337
 	if (!empty($look)) {
338 338
 		// link to look at completed project
339
-		echo ' <a href="'.$look.'" target="_BLANK" ><span class="badge badge-inverse">Visit</label></a>';
339
+		echo ' <a href="'.$look.'" target="_BLANK" ><span class="badge badge-inverse">Visit <i class="icon-arrow-right icon-white"></i></label></a>';
340 340
 	}
341 341
 	if (!empty($code)) {
342 342
 		// link to look at completed project
343
-		echo ' <a href="'.$code.'" target="_BLANK""><span class="badge badge-info">Code</span></a>';
343
+		echo ' <a href="'.$code.'" target="_BLANK""><span class="badge badge-info">Code <i class="icon-arrow-right icon-white"></i></span></a>';
344 344
 	}
345 345
 	echo '</li>';
346 346
 }