import jet
import jet.websites.jeffandmere as jeffandmere



def yield_data(psp_directory, **kwargs):
	text =  '<p class="center">Hello Everyone, and Welcome to our Wedding Website.</p>\n'
	text += '\n'
	text += '<p class="center">This site provides important information about our wedding and\n'
	text += 'will hopefully get you excited for the vacation.  We highly recommend\n'
	text += 'checking out everything on the site.  We are looking forward to\n'
	text += 'celebrating with everybody!</p>\n\n'

	image_path  = 'Wedding/Images/Jeff and Mere Eating at the Flying Fishbone.jpg'
	image_hover = 'Dinner at the Flying Fishbone'

	for data in jeffandmere.yield_page('Welcome',
	                                   jeffandmere.yield_standard_page,
	                                   text          = text,
	                                   image         = image_path,
	                                   image_hover   = image_hover,
	                                   image_width   = 604,
	                                   image_height  = 453,
	                                   **kwargs):
		yield data


