Update landing page to use gravatar.

This commit is contained in:
yackob03 2013-09-27 18:15:31 -04:00
parent bf926aceee
commit 730f4f2d66
5 changed files with 21 additions and 1 deletions

5
util/gravatar.py Normal file
View file

@ -0,0 +1,5 @@
import hashlib
def compute_hash(email_address):
return hashlib.md5(email_address.strip().lower()).hexdigest()