<?php

require_once '../layout.php';
echo Layout::header('trailer', 'trailer');
?>

<h1>Trailer</h1>

<div class="trailer_container">
	<a href="#" id="trailer">
		<img src="../img/trailer_preview.png" />
	</a>
</div>

<?php 
echo Layout::footer();
Exemple #2
0
<?php

/*
INFO ON WHAT THIS PAGE WILL SHOW
Graphs of all my arena stats
Need to do importing of all my old arena runs
New feature of arena (how many of which rarity rarity)
*/
include_once "classes/functions.php";
include_once "classes/layout.php";
$functions = new Functions();
$layout = new Layout();
$database2 = new Database2();
$layout->title("HS Arena stats");
$layout->header();
$arena_id = Functions::Post_Int('ArenaID');
$new_arena = 0;
Functions::ClassList_Load_Classes($database2, $classes);
if (!Functions::ArenaRun_Load_ID($database2, $arena_id, $arena_run)) {
    if (!Functions::ArenaRun_Load_Active($database2, $arena_run)) {
        $new_arena = 1;
    }
}
if (!$new_arena) {
    Functions::ArenaRewards_Load_ArenaID($database2, $arena_run['id'], $arena_rewards);
    Functions::ArenaMatchList_Load_ArenaID($database2, $arena_run['id'], $arena_matches);
}
?>
<a href="index.php">Home</a>
<h1 style="margin: 5px;">Arena Stats and Data</h1>
<?php

require_once '../layout.php';
echo Layout::header('gallery', 'gallery');
?>

<hgroup>
	<h1>Photo Gallery</h1>
	<h2>Click a photo to see the larger version and more information</h2>
</hgroup>

<div class="rect">

	<a href="../img/gallery/01.jpg" class="pic window">
		<img src="../img/gallery/01_thumb.png" alt="" data-desc="James Stewart from a photo shoot" \>
		<span>James Stewart</span>
	</a>

	<a href="../img/gallery/02.jpg" class="pic window">
		<img src="../img/gallery/02_thumb.png" alt="" data-desc="Fictional set used for the film. A giant soundstage had to be built to enclose it." \>
		<span>L.B. Jefferies' Window View</span>
	</a>

	<a href="../img/gallery/03.jpg" class="pic window">
		<img src="../img/gallery/03_thumb.png" alt="" data-desc="Grace Kelly and James Stewart on set." \>
		<span>Grace Kelly</span>
	</a>

	<a href="../img/gallery/04.jpg" class="pic window">
		<img src="../img/gallery/04_thumb.png" alt="" data-desc="L.B. Jefferies' diligent caretaker looks concerned." \>
		<span>Thelma Ritter</span>
<?php

require_once '../layout.php';
echo Layout::header('about the film', 'about');
?>

<h1>About <span>the</span> film</h1>

<div class="rect">
	<img src="../img/movie_poster_art.png" alt="Movie poster" />

	<p>As his broken leg heals, wheelchair-bound L.B. Jefferies (James Stewart) becomes absorbed with the parade of life outside his window and soon fixates on a mysterious man whose behavior has Jefferies convinced a murder has taken place.</p>
	<p>Curioisity becomes obession as a man locked away in his apartment does only what he can, observe his surroundings. Will he discover the truth? Did a murder take place, or was Jefferies simply making connections out of random coincidences.</p>
	<p>Meanwhile, other windows reveal the daily lives of a dancer, a lonely woman, a composer, a dog and more. Grace Kelly, Thelma Ritter and Wendell Corey co-star in this Alfred Hitchcock-helmed classic.  James Stewart and Grace Kelly produce such a suspensful combo you are sure to be on the edge of your seat.</p>
	<p>Own it soon on Bluray and DVD!</p>
</div>

<?php 
echo Layout::footer();
<?php

require_once '../layout.php';
echo Layout::header('Cast &amp; Crew', 'castncrew');
?>

<hgroup>
	<h1>Cast <span>And</span> Crew</h1>
	<h2>Scroll to see all the bios</h2>
</hgroup>

<div class="rect">

	<div class="member">
		<img src="../img/castncrew/james_stewart.jpg" alt="" />
		<hgroup>
			<h2>James Stewart</h2>
			<h3>L.B. "Jeff" Jeffries</h3>
		</hgroup>
		<p>Born 1908 in Pennsylvania, James Stewart originally performed on Broadway in 1932 but work dried up with the onset of the great Depression. After being drafted into the Army in 1940 and serving in World War II as a Colonel, he retired in 1959 as Brigadier General. Soon after, his acting career began.</p>
	</div>

	<div class="member">
		<img src="../img/castncrew/grace_kelly.jpg" alt="" />
		<hgroup>
			<h2>Grace Kelly</h2>
			<h3>Lisa Carol Fremont</h3>
		</hgroup>
		<p>Originally from Pennsylvania with wealthy parents, Grace Kelly worked as a model in New York after she graduated high school in 1947. She made her debut on Broadway in 1949. She struck it big and starred in her first movie, Forteen Hours, in 1951 at the young age of 22. Her career skyrocketed from there.</p>
	</div>