Skip to content

Instantly share code, notes, and snippets.

@bwiggs
Created June 20, 2012 06:22
Show Gist options
  • Save bwiggs/2958417 to your computer and use it in GitHub Desktop.
Save bwiggs/2958417 to your computer and use it in GitHub Desktop.
html.php
<?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