Created
June 20, 2012 06:22
-
-
Save bwiggs/2958417 to your computer and use it in GitHub Desktop.
html.php
This file contains hidden or 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
<?php | |
foreach ($visible as $destinationLink) { | |
echo | |
"<li class='selected_list_item' id=" . $destinationLink['Destination']['slug'] . "> | |
<div class='trip_info'> | |
<a href='#' class='close_list_item' rel='" . $destinationLink['Destination']['slug'] . "'>X</a> | |
<span class='insider_carousel_header'>Meet an insider</span> | |
<div> | |
<a href='TODO' class='location'>" . $destinationLink['Destination']['name'] . "</a> | |
<p class='trip_type_header'><strong>" . $destinationLink['Destination']['name'] . "</strong> <em>" . $destinationLink['Destination']['subheading'] . "</em></p> | |
<p>" . $destinationLink['Destination']['description'] . "</p> | |
<div> | |
<strong>Geography</strong> Rich diversity, from tropical beaches to mountains<br/> | |
<strong>Official Languages</strong> Standard Hindi and English<br/> | |
<strong>Weather</strong> Rich diversity, from tropical beaches to mountains<br/> | |
</div> | |
</div> | |
</div> | |
<div class='insider_carousel_wrapper' id='destination_" . $destinationLink['Destination']['slug'] . "'> | |
<div class='insider_carousel'> | |
<ul class='carousel'>”; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment