The permalink redirecting to current article on single.php page

It seems like, you have added permalink for categories inside span tag. Where do you want to add permalink actually?

If you want to apply permalink for post title, then add permalink inside <h4> tag. currently your href is empty inside <h4> element.

<h4 class="post-title">
    <a href="<?php echo get_the_permalink() ?>"><?php the_title(); ?> </a>
</h4>