#!/bin/bash
# Move to the directory that this file is in.
cd `dirname $0`
# Create the necessary HTML components for a web page.
./helpers/body_open.php
#Content for this page
cat << EOF
My Journey
[ TBD, check back soon. ]
EOF
# Any subpages
###./subpages/journey/???
# Finish the web page
./helpers/body_close.php