Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <div class="row max_width">
  2. <div class="small-12 large-8 columns">
  3. <?php if ( has_post_thumbnail() ) { ?>
  4. <figure class="post-gallery parallax">
  5. <div class="parallax_bg"
  6. data-top-bottom="transform: translate3d(0px, 20%, 0px);"
  7. data-bottom-top="transform: translate3d(0px, -20%, 0px);">
  8. <?php the_post_thumbnail('notio-single-3x'); ?>
  9. </div>
  10. </figure>
  11. <?php } ?>
  12. <header class="post-title">
  13. <?php get_template_part( 'inc/templates/postbits/post-meta' ); ?>
  14. <h3 itemprop="headline"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
  15. </header>
  16. <div class="post-content">
  17. <?php the_excerpt(); ?>
  18. <a href="<?php the_permalink(); ?>" class="more-link"><?php esc_html_e( 'Read More', 'notio' ); ?></a>
  19. </div>
  20. <?php do_action( 'thb_PostMeta' ); ?>
  21. </div>
  22. <div class="small-12 large-3 columns sidebar">
  23.  <?php if ( is_active_sidebar( 'custom-side-bar' ) ) : ?>
  24. <?php dynamic_sidebar( 'custom-side-bar' ); ?>
  25. <?php endif; ?>
  26. </div>
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement