<div class="blog-post__left">
<img class="blog-article__img_big" src="img/blog-page-img-2.jpg" alt="Cybersecurity today">
<img class="blog-article__img_small" src="img/blog-page-img-2-small.jpg" alt="Cybersecurity today">
</div>
<div class="blog-block__left">
<?php if ( has_post_thumbnail()) { ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<img class="blog__img_big" <?php the_post_thumbnail(); ?>
</a>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<img class="blog__img_small" <?php the_post_thumbnail(); ?>
</a>
<?php } ?>
</div>
<div class="blog-post__left">
<?php if ( has_post_thumbnail()) { ?>
<?php the_post_thumbnail('full', array(
'class' => 'blog__img_big',
'alt' => get_the_title(),
)); ?>
<?php the_post_thumbnail('medium', array(
'class' => 'blog__img_small',
'alt' => get_the_title(),
)); ?>
<?php } else { ?>
<?php the_post_thumbnail('full', array(
'src' => get_template_directory() . '/images/no-image.jpg',
'class' => 'blog__img_big',
'alt' => get_the_title(),
)); ?>
<?php the_post_thumbnail('medium', array(
'src' => get_template_directory() . '/images/no-image-small.jpg',
'class' => 'blog__img_small',
'alt' => get_the_title(),
)); ?>
<?php } ?>
</div>