MISSION

Blood:Water Mission is an equipping agency that partners with African grassroots organizations to address the HIV/AIDS and water crises. We do this by identifying Africa’s hidden heroes and coming alongside their vision for change. Through technical, financial and organizational support, we expand the reach and effectiveness of African civil society organizations and the communities they serve.

HISTORY

Since our launch in 2004, Blood:Water has raised over $22 million through the creative efforts of tens of thousands of individuals seeking to make a difference. We believe that Africa holds the leadership, creativity, passion and resolve necessary to address the HIV/AIDS and water crises. That’s why we’ve spent the past ten years working alongside more than a dozen African organizations to bring clean water and HIV/AIDS support to nearly a million people in 11 countries.

But, it is a slowly by slowly, uneven kind of progress. While access to water has increased dramatically in the last decade and some places are seeing a reduction in new HIV infections, millions still need safe water and health and support services for HIV. The stakes are high, and lives are at risk – for women and children, mostly. We are morally implicated in this. It is personal for us, and we’re not backing down.

We know that the only way we can get to see the end of the HIV/AIDS and water crises in Africa is to continue to build the movement of families, universities, churches, businesses, artists, medical professionals, athletes and individuals like YOU to join us in the fight.

ul#entries {
padding: 0 !important;
}

ul#entries li {
clear: both;
float: left;
width: 100%;
list-style: none !important;
margin-bottom: 2.5em;
}

ul#entries li.loading {
margin-bottom: 0;
}

ul#entries li h2 {
margin: 0 0 .25em 0 !important;
}

ul#entries li p.blog_date {
margin-bottom: 1.5em !important;
}

  • Loading...

// ================================================
// Your info here
// ================================================
var feedURL = 'http://bloodwatermission.tumblr.com/rss';
var numEntries = 10;
var blogURL = 'http://www.bloodwater.org';
var blogLink = 'View full website »';
// ================================================

google.load("feeds", "1");

function formatDate(d, f) {
var d = new Date(d);
var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
var days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
return f.replace(/(yyyy|mmmm|mmm|mm|dddd|ddd|dd|hh|nn|ss|a\/p)/gi,
function($1) {
switch ($1.toLowerCase()) {
case 'yyyy': return d.getFullYear();
case 'mmmm': return months[d.getMonth()];
case 'mmm': return months[d.getMonth()].substr(0, 3);
case 'mm': return (d.getMonth() + 1);
case 'dddd': return days[d.getDay()];
case 'ddd': return days[d.getDay()].substr(0, 3);
case 'dd': return d.getDate();
case 'hh': return ((h = d.getHours() % 12) ? h : 12);
case 'nn': return d.getMinutes();
case 'ss': return d.getSeconds();
case 'a/p': return d.getHours() < 12 ? 'a' : 'p';
}
}
);
}

function initialize() {
var feed = new google.feeds.Feed(feedURL);
feed.setNumEntries(numEntries);
feed.load(function(result) {

if(result.error) return;

var list = document.getElementById('entries');
list.removeChild(list.firstChild);

for(var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
var link = document.createElement('a');
link.setAttribute('href', entry.link);
link.appendChild(document.createTextNode(entry.title));
var title = document.createElement('h2');
title.appendChild(link);
var date = document.createElement('p');
date.setAttribute('class', 'blog_date');
date.appendChild(document.createTextNode(formatDate(entry.publishedDate, 'mmmm dd, yyyy')));
var content = document.createElement('div');
content.innerHTML = entry.content;
var li = document.createElement('li');
li.appendChild(title);
li.appendChild(date);
li.appendChild(content);
list.appendChild(li);
}

if(blogLink && blogURL) {
var link = document.createElement('a');
link.setAttribute('href', blogURL);
link.innerHTML = blogLink;
var li = document.createElement('li');
li.appendChild(link);
list.appendChild(li);
}
});
}

google.setOnLoadCallback(initialize);