Created
August 18, 2011 13:04
-
-
Save lucadegasperi/1154022 to your computer and use it in GitHub Desktop.
Example view.php for Tiles
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
<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