Beispiel #1
0
    <?php 
x_get_view('global', '_footer', 'widget-areas');
?>

    <?php 
if (get_theme_mod('x_footer_bottom_display') == 1) {
    ?>

      <footer class="x-colophon bottom" role="contentinfo">
        <div class="x-container-fluid max width">

          <?php 
    if (get_theme_mod('x_footer_social_display') == 1) {
        ?>
            <?php 
        x_social_global('colophon');
        ?>
          <?php 
    }
    ?>

          <?php 
    if (get_theme_mod('x_footer_menu_display') == 1) {
        ?>
            <?php 
        x_get_view('global', '_nav', 'footer');
        ?>
          <?php 
    }
    ?>
// =============================================================================
// VIEWS/GLOBAL/_TOPBAR.PHP
// -----------------------------------------------------------------------------
// Includes topbar output.
// =============================================================================
?>

<?php 
if (x_get_option('x_topbar_display', '') == '1') {
    ?>

  <div class="x-topbar">
    <div class="x-topbar-inner x-container max width">
      <?php 
    if (x_get_option('x_topbar_content') != '') {
        ?>
      <p class="p-info"><?php 
        echo x_get_option('x_topbar_content');
        ?>
</p>
      <?php 
    }
    ?>
      <?php 
    x_social_global();
    ?>
    </div>
  </div>

<?php 
}
Beispiel #3
0
// =============================================================================
// VIEWS/GLOBAL/_TOPBAR.PHP
// -----------------------------------------------------------------------------
// Includes topbar output.
// =============================================================================
?>

<?php 
if (get_theme_mod('x_topbar_display') == 1) {
    ?>

  <div class="x-topbar">
    <div class="x-topbar-inner x-container-fluid max width">
      <?php 
    if (get_theme_mod('x_topbar_content') != '') {
        ?>
      <p class="p-info"><?php 
        echo get_theme_mod('x_topbar_content');
        ?>
</p>
      <?php 
    }
    ?>
      <?php 
    x_social_global('topbar');
    ?>
    </div> <!-- end .x-topbar-inner -->
  </div> <!-- end .x-topbar -->

<?php 
}