Please help me to figure out how to display my tags

You can use the WP function the_tags(), more info here.

You will have to figure out where exactly in your content-single.php to put this but you want to add something like this…

<p><?php the_tags(); ?></p>

View the link above for more examples.