from app import * from datetime import datetime def page(): txts = [Markdown(intro)] return BstPage(0, "Hi there 👋", *txts) birthdate = datetime(1994, 3, 18) age_in_years = (datetime.now() - birthdate).days // 365 maya_birthdate = datetime(2019, 3, 18) maya_age_in_years = (datetime.now() - maya_birthdate).days // 365 intro = f"""
I'm Nicholas Broad. I'm currently {age_in_years} years old, living in San Francisco, California. I'm an open-minded, curious, and self-motivated person who enjoys learning new things and working on interesting projects. I like to think of myself as friendly, humble, and a bit goofy. I live with my beautiful dog, Maya, who is {maya_age_in_years} years old. You can often find us at parks in SF playing fetch. Maya will almost always be wearing a bandana, as all dogs should. We even have a matching shirt and bandana (see photo)!
Nico and Maya
"""