Skip to content

Instantly share code, notes, and snippets.

@lucadegasperi
Created August 18, 2011 13:04
Show Gist options
  • Save lucadegasperi/1154022 to your computer and use it in GitHub Desktop.
Save lucadegasperi/1154022 to your computer and use it in GitHub Desktop.
Example view.php for Tiles
<section class="social">
<?php if($title) : ?>
<h1><?php echo $title; ?></h1>
<?php endif; ?>
<?php if($description) : ?>
<p><?php echo $description; ?></p>
<?php endif; ?>
<ul>
<?php foreach($social_networks as $sn) : ?>
<li>
<a href="<?php echo $sn['social_url']; ?>" rel="nofollow"><?php echo $sn['social_url']; ?></a>
</li>
<?php endforeach; ?>
</ul>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment