Events
<?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.";
}
?>
The Denver Classical Guitar Society meets on the third Tuesday of each month, at 7:00 pm, at the South Broadway Christian Church in Denver. You are welcome to bring your guitar and play a piece or two for the group; or you're welcome to simply come and enjoy the music and fellowship.
The South Broadway Christian Church is at 23 Lincoln Street (at Ellsworth), just south of downtown (map).
The Denver Classical Guitar Society meets on the third Tuesday of each month, at 7:00 pm, at the South Broadway Christian Church in Denver. You are welcome to bring your guitar and play a piece or two for the group; or you're welcome to simply come and enjoy the music and fellowship.
The South Broadway Christian Church is at 23 Lincoln Street (at Ellsworth), just south of downtown (map).
<?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.
$mdy = "March 29, 2008";
$dow = "Saturday";
$time = "7:30pm";
$artist = "Jeff LaQuatra";
$artistwebsite = "";
$subtitle = "";
$ticketcost = "15";
$imagefile = "2007/laquatra.jpg";
$blurb = "\"A guitarist of enormous talent, both musically and technically.\"\n";
$blurb .= "- Classical Guitar\n";
if (strlen($artistwebsite) > 0) {
$blurb .= "" . $artistwebsite . "\n";
}
$onlinesalesopen = FALSE;
$title = $mdy . ": " . $artist;
$date = $dow . ", " . $mdy . ", " . $time;
// Print the event content, formatted
print "
" . $title . "
\n";
if (strlen($subtitle) > 0) {
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.";
}
?>
The Denver Classical Guitar Society meets on the third Tuesday of each month, at 7:00 pm, at the South Broadway Christian Church in Denver. You are welcome to bring your guitar and play a piece or two for the group; or you're welcome to simply come and enjoy the music and fellowship.
The South Broadway Christian Church is at 23 Lincoln Street (at Ellsworth), just south of downtown (map).

