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
|
<%@ Page Language="C#" MasterPageFile="~/Main.master" AutoEventWireup="true"
CodeFile="Credits.aspx.cs" Inherits="Credits" Title="Credits - Groovy bits" %>
<asp:Content ID="Content1" ContentPlaceHolderID="content" runat="Server">
<h1>Credits and Links</h1>
<asp:Panel runat="server" ID="WrapperPanel" CssClass="wrapper-panel">
<p>Groovy bits recognizes the contributions of the following individuals / businesses
who have contributed features / code to this site:</p>
<ul>
<li>
<a href="http://slideshow.barelyfitz.com/" target="_blank">JavaScript Slideshow</a>
provided by <a href="http://www.barelyfitz.com/">BarelyFitz Designs</a>
</li>
</ul>
<p>Groovy bits provides pro bono web services to the following individuals / organizations:</p>
<ul>
<li><a href="http://www.dawnhuebnerphd.com" title="Dawn Huebner, PhD" target="_blank">Dawn Huebner, PhD</a> - author, psychologist, and Russ' sister</li>
<li><a href="http://www.dvsolutions.org" title="Domestic Violence Solutions for Santa Barbara County" target="_blank">Domestic Violence Solutions for Santa Barbara County</a></li>
<li><a href="http://www.carpinteriabeautiful.org" title="Carpinteria Beautiful" target="_blank">Carpinteria Beautiful</a> - a non-profit in our home town</li>
<li><a href="http://www.natureandculture.org" title="Nature & Culture, International" target="_blank">Nature & Culture, International</a> - conserving biological and cultural diversity</li>
</ul>
</asp:Panel>
<ajaxToolkit:RoundedCornersExtender ID="rce1" runat="server" TargetControlID="WrapperPanel" Radius="15" Color="#FFFFFF" />
</asp:Content>
|