Skip to content

Instantly share code, notes, and snippets.

@igorbarato
Created March 30, 2017 06:10
Show Gist options
  • Save igorbarato/425d08613a73a4a52c68d58b8071ff86 to your computer and use it in GitHub Desktop.
Save igorbarato/425d08613a73a4a52c68d58b8071ff86 to your computer and use it in GitHub Desktop.
Arquivo onde é renderizados as regiões do tema (templates/page.tpl.php)
<!-- Começa na linha 89 -->
<div class="top_right">
<?php if (theme_get_setting('social_links', 'execute_responsive_theme')): ?>
<div class="social-icons">
<ul>
<li><a class="rss" href="<?php print $front_page; ?>rss.xml">RSS</a></li>
<li><a class="fb" href="<?php echo theme_get_setting('facebook_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">Facebook</a></li>
<li><a class="twitter" href="<?php echo theme_get_setting('twitter_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">Twitter</a></li>
<li><a class="gplus" href="<?php echo theme_get_setting('gplus_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">Gplus</a></li>
<li><a class="linkedin" href="<?php echo theme_get_setting('linkedin_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">linkedin</a></li>
<li><a class="pinterest" href="<?php echo theme_get_setting('pinterest_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">pinterest</a></li>
<li><a class="vimeo" href="<?php echo theme_get_setting('vimeo_profile_url', 'execute_responsive_theme'); ?>" target="_blank" rel="me">vimeo</a></li>
</ul>
</div>
<?php endif; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment