Files
PetitTeton/public/visiting.html
Wynne Crisman e82078174b Updated site to scale better on small screens; Added clearfix css; Updated shadow feature to use css shadows instead of js/images.
Added code to the admin part of the site - still non-functional.  Need to fix JSON streaming over HTTP such that native types (boolean, Date, int) are preserved for the DB;  Need to finish the restore functionality & the hide/show of the edit, delete, and restore buttons on each editor page.
2016-10-26 14:48:11 -07:00

47 lines
3.1 KiB
HTML

<div id="visiting" class="page">
<h1>CONTACT & VISIT</h1>
<p>
We would love to have you visit our farm. Please call <b>707.684.4146</b> or email <a href="mailto:farmer@petitteton.com"><b>farmer@petitteton.com</b></a> to set up a time.
</p>
<p>
<div class="visitSlideshowInstructions">Click Image To Pause</div>
<div class="visitSlideshow" data-cycle-fx="fadeout" data-cycle-timeout=4000 data-cycle-pause-on-hover="true"><div class="cycle-overlay"></div><div class="cycle-pager"></div><img src="images/map_v1.jpg" data-cycle-title="The Map" data-cycle-desc=""/><img src="images/Visit2_v1.jpg" data-cycle-title="View from Hwy 128" data-cycle-desc=""/><img src="images/Visit3_v1.jpg" data-cycle-title="Go Left at the Fork" data-cycle-desc=""/><img src="images/Visit4_v1.jpg" data-cycle-title="Our 'Door Bell'.. or just wander around until you are found!" data-cycle-desc=""/><img src="images/Visit5_v1.jpg" data-cycle-title="View from Above" data-cycle-desc=""/></div>
<br/>
<b>Petit Teton</b> is located in the scenic Anderson Valley in Mendocino County on Highway 128 between Cloverdale and the coast just 100 miles from the Golden Gate Bridge.
Our property of rolling hills and rocky crags covered in grasses, is cut through by many unnamed seasonal creeks running down to Rancheria Creek.
The farm faces south and looks out onto the mountains across the road, which are covered in a mixed forest of redwood, oak, madrone, and incense cedar.
The country is still wild enough to support bears, mountain lions, golden eagles, bobcats, coyotes, deer and lots of wild pig.
It's a beautiful place.
</p>
<p>
Because the valley runs all the way to the ocean, we have erratic weather.
Summer's cooling coastal fogs are a blessing, but the unpredictable seasonal weather and wide range in temperature from day to night puts a damper on our enthusiasm to grow some things.
But everything does grow and the mild climate allows us to grow well a wide variety of fruits and vegetables.
</p>
<p>
Directions: 101 North to last Cloverdale exit saying Ft Bragg &amp; Hwy 128 West; follow signs to a right turn onto 128.
It's around 22 miles to our driveway which is on the right at highway marker 33.39.
The address, <b>18601</b>, and the <b>Petit Teton</b> logo are on a sign at the foot of the short paved road to our farm.
</p>
</div>
<script type="text/javascript" language="JavaScript">
$('.visitSlideshow').cycle();
$('.visitSlideshow img').click(function() {
if($('.visitSlideshow').data('is-paused')) {
$('.visitSlideshow').cycle('resume');
$('.visitSlideshow').data('is-paused', false);
$('.visitSlideshowInstructions').html("Click Image To Pause");
//$('.visitSlideshow .cycle-pause').css('background-image', 'images/pause.png');
}
else {
$('.visitSlideshow').cycle('pause');
$('.visitSlideshow').data('is-paused', true);
$('.visitSlideshowInstructions').html("Click Image To Resume");
//$('.visitSlideshow .cycle-pause').css('background-image', 'images/play.png');
}
});
$('.visitSlideshow div').unloaded = function() {
$('.visitSlideshow').cycle('destroy');
alert("Destroyed");
}
</script>