import jet
import jet.websites.jeffandmere as jeffandmere



def yield_data(psp_directory, **kwargs):
	relative_root = jeffandmere.get_relative_root(**kwargs)
	text =  '<p>The ceremony will take place on the beach at the\n'
	text += jeffandmere.get_link(
			relative_root, 'http://www.manchebo.com/', 'Manchebo Beach Resort') + ' in Aruba.\n'
	text += 'Guests need to be at the resort at 5:00 P.M.,\n'
	text += jeffandmere.get_link(
			relative_root, 'http://www.timeanddate.com/worldclock/city.html?n=689', 'AST') + '\n'
	text += '(not EST), on Friday, December 30th,\n'
	text += '2011. We request guests be dressed in resort causal attire: no jeans or shorts,\n'
	text += 'sandals are fine.  Heels are not recommended for the ceremony or the cocktail hour\n'
	text += 'as we will be in the sand, but one could easily go barefoot; there will be a\n'
	text += 'solid floor in the reception pavilion.</p>\n'
	text += '\n'
	text += '<p>Celebrations will run until 11:30 P.M. after which we will facilitate an\n'
	text += 'after-party at a nearby establishment.</p>'

	for data in jeffandmere.yield_page('Ceremony',
	                                   jeffandmere.yield_standard_page,
	                                   text          = text,
	                                   image         = 'Wedding/Images/Manchebo Arial View.jpg',
	                                   image_hover   = 'Manchebo Resort and Beach',
	                                   **kwargs):
		yield data

