<?php
// Note: this works in the event content type, but not if the event is promoted to the front page.
// Use the "concert announcement" template for an announcement node for the front page.
// Set these variables based on the concert specifics.
$title = "February 16, 2008: duoMare";
$subtitle = "Rachel Choe, fluteAkiko Sumi, guitar";
$date = "Saturday, February 16, 2008, 7:30pm";
$ticketcost = "15";
$imagefile = "2007/duomare.jpg";
$blurb = "\". . . duoMare is a delight—they play in an intimate and loving way that is irresistible . . .\"\n";
$blurb .= "- Michael Kannen, Peabody Conservatory\n";
$blurb .= "www.rachelchoe.com\n";
$onlinesalesopen = FALSE;
// Print the event content, formatted
print "
" . $title . "
\n";
print "" . $subtitle . "\n";
print "\n";
print "
\n";
print "\n";
print "Date: " . $date . "\n";
print "Location: South Broadway Christian Church, Denver (map)\n";
print "Tickets: $" . $ticketcost . "\n";
print $blurb;
print "\n";
if ($onlinesalesopen) {
// Add to cart
print "\n";
print "\n";
print "
\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
// View cart
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "Please note: on-line purchases include a small handling fee to cover our transaction processing costs.\n";
print "You may also order tickets by mail using this form.\n";
print "Tickets purchased on-line or by mail within two weeks of the concert will be held for you at the door;\n";
print "please bring identification with you to pick up your tickets. Tickets purchased more than two weeks before \n";
print "the concert will be mailed to you.\n";
} else {
print "Note: online sales have closed; tickets are available at the door. Thank you.";
}
?>