Created
August 14, 2009 01:53
-
-
Save dhoss/167586 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Contacting Dr. Kay</h2> | |
<div align="center">[% form.render %]</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link type="text/css" href="[% c.uri_for('/', 'static', 'css', 'custom-theme', 'jquery-ui-1.7.2.custom.css') %]" rel="stylesheet" /> | |
<script type="text/javascript" src="[% c.uri_for('/', 'static', 'js', 'jquery-1.3.2.min.js' ) %]"></script> | |
<script type="text/javascript" src="[% c.uri_for('/', 'static', 'js', 'jquery-ui-1.7.2.custom.min.js' ) %]"></script> | |
<link rel="shortcut icon" href="[% c.uri_for('/', 'static','images','favicon.ico') %]" /> | |
<script type="text/javascript"> | |
$(function(){ | |
// Accordion | |
$("#accordion").accordion({ header: "h3" }); | |
// Tabs | |
$('#tabs').tabs({ | |
ajaxOptions: { async: false }, | |
spinner: 'Retrieving data...', | |
collapsible: true | |
}); | |
}); | |
</script> | |
</head> | |
<div id="tabs"> | |
<ul> | |
<li><a href="[% c.uri_for('/') %]" title="Back to the home page">Home</a></li> | |
<li><a href="[% c.uri_for('/','meet') %]" title="View the doctors' profiles">Meet the doctors</a></li> | |
<li><a href="[% c.uri_for('/','contact') %]" title="Contact Us">Contact Us</a></li> | |
<li><a href="[% c.uri_for('/','page', '1') %]" title="About">About</a></li> | |
</ul> | |
<div id="footer" align="center">Copyright (c) </div> | |
</div> | |
</body> | |
</html> | |
[% END %] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment