Give wp link pages it’s own template

In your single.php add this example code inside the loop:

<?php 
    global $page;
    if ($page == 1) {?>
    <div style="color:red;">This text should only appear on first page of the post!!!</div>
<?php } ?>

you can change the div with your thing that you wanted to display only on the first post page..