| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- get_header();
- taskereasy_blog_banner();
- ?>
- <section class="section-padding">
- <div class="container">
- <?php if(have_posts()) {
- $count = 0;
- while(have_posts()){
- the_post();
- $align = ($count%2 == 0) ? 'align-right' : ''; ?>
- <div class="services-container <?php echo esc_attr($align); ?>">
- <?php if(has_post_thumbnail()){ ?>
- <div class="services-image">
- <div class="services-no"><?php echo esc_html($count); ?></div>
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
- </div>
- <?php } ?>
- <div class="services-info">
- <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
- <p><?php echo taskereasy_custom_excerpt_length(50); ?></p>
- <a href="<?php the_permalink(); ?>" class="btn"><?php echo esc_html__('Start Now', 'taskereasy'); ?> <i class="fa fa-angle-right"></i></a>
- </div>
- </div>
- <?php $count++;
- }
- } ?>
- </div>
- </section>
- <?php
- get_footer();
- ?>
|