You are here

function theme_instagram_feeds in Instagram Feeds 7

Returns HTML for an Instagram block.

File

./instagram_feeds.module, line 983

Code

function theme_instagram_feeds($vars) {
  $output = '';
  if (isset($vars['element']['#markup'])) {
    $output .= '<div class="block-instagram-feeds pos-' . $vars['element']['#pos'] . '">' . $vars['element']['#markup'] . '</div>';
  }
  return $output;
}