Everything is dynamic. The files for the events module are located in the modules/boonex/events/ directory. The URLs that you are seeing of generated from the rewrite rules in you .htaccess file.
It seems that you are thinking of the website as static html pages where you just have html and some css controlling it. Dolphin has many files controlling each page (js, html, css, php mainly). When you call on a module such as trying to go to Events, Photos, Videos, etc.mt he .htaccess file in the root directory of Dolphin rewrites the url and redirects the browser to the relevant modules page. Example...if I click on the menu that says Photos, the htaccess file directs me to the Photos modules and them generates a nice pretty permalink in the URL address bars so my users don't get all confused as to where they are and the search engines read the address of some of my dynamic pages.
At the head of each module are include or require functions that pull in other files that are required to make the modules run. Those files call other files which call other files. Unfortunately, it's not going be be a simple as cut and paste one page to create another.
Ok, now that I've probably confused you thoroughly with my gibberish, let me try to give you some more useful information.
When I want to create a custom page but don't want to go through the process of creating a Dolphin Module from top to bottom, what I do is use the Dolphin Create Page functions. With the aid of gorpus' PHP Block Mod, I can them program my page to do whatever I want to do from within the blocks themselves. If I want to create a pages that displays my events in a different way that Dolphin Displays them I start out by writing code directly in the boxes.
For example, let say, one of my clients wanted to display the tour schedule of their Recording Artists on a particular page and didn't like the way Dolphin presented the events. What I did was created a function such as:
/*
echo "<div style='background-color:#999999; width:450px; padding-bottom:50px;'> <br/>
<div style='margin:10px 0px 10px 20px; font-weight:bold; font-family:Arial,Verdana,Times New Roman;'>Tour & Event Dates</div>
";
$query1 = mysql_query("SELECT * FROM bx_events_main");
while($row3=mysql_fetch_assoc($query1))
{
$ID = $row3['ID'] ;
$Title = $row3['Title'];
$EntryUri = $row3['EntryUri'];
$Description = $row3['Description'];
$Status = $row3['Status'];
$Country = $row3['Country'];
$City = $row3['City'];
$Place = $row3['Place'];
$PrimPhoto = $row3['PrimPhoto'];
$Date = $row3['Date'];
$EventStart = $row3['EventStart'];
$EventEnd = $row3['EventEnd'];
$ResponsibleID = $row3['ResponsibleID'];
$Tags = $row3['Tags'];
$Categories = $row3['Categories'];
$Views = $row3['Views'];
// TURN THE EPOCH DATES IN TO REAL DATES
$thedate = getdate($EventStart);
//GET HUMAN READABLE TIME IN 12 HOUR FORMAT
$human_starttime = date("g:i a", $EventStart);
$prenumbermonth = $thedate['mon'];
if($prenumbermonth < (10)) {
$numbermonth = "0" . $prenumbermonth;
} else {
$numbermonth = $thedate['mon'];
}
$thetextmonth = $thedate['month'];
$thedayoftheweek = $thedate['weekday'];
$thenumericday = $thedate['mday'];
$theyear = $thedate['year'];
$fulldate = $thedayoftheweek . " " . $thetextmonth . " " . $thenumericday . ", " . $theyear;
$numberdate = $thenumericday . "-" . $numbermonth . "-" . $theyear;
//GET THE EXTENSION OF THE PHOTO
$photoquery = mysql_query("SELECT * FROM bx_photos_main WHERE ID = $PrimPhoto");
while($myrow = mysql_fetch_assoc($photoquery)) {
$ext = '.' . $myrow['Ext'];
}
$eventspath = "../m/events/view/";
$pathtoimages = "../modules/boonex/photos/data/files/";
$tourphoto = "<img src='" . $pathtoimages . $PrimPhoto . $ext . "'/>";
echo "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />
<link href='css/tourdates.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div id='tourdatewrapper'>
<table width='100%' border='1'>
<tr>
<td class='photocolumn'><div class='tourphoto'> $tourphoto </div></td>
<td>
<div class='tourinfo'>
<div style='font-weight:bold; color:#003399;'><a href='$domain"."m/events/view/$EntryUri' target='_parent'>Event Name: $Title</a></div>
<div>Venue Name: $Place</div>
<div>City: $City</div>
<div>Country: $Country</div>
<div style='font-weight:bold; color:#CC0033;'>Date: $fulldate</div>
</div>
</td>
</tr>
</table>
</div>";
}
echo "</div>";
*/