BUG? Adding 'is_frontpage' adds >> to html code

Hi there,

when I add the conditional ‘is_frontpage’ and I select ‘NOT’, the generated php code seems to add a chevron arrow in front of the element:

<section data-pg-name="PAGEDESCRIPTION" wp-if-is-front-page="!">
    <div id="sitetitle" class="container welcome">
        <div class="row blocktitle">
            <div class="col-md-10 col-md-offset-1">
                <p class="h1" wp-title>page title</p>
                <p class="blocksubtitlesmall">[sahyt]</p>
            </div>
        </div>
    </div>
</section>

HTML:

<?php if ( !is_front_page() ) : ?>
    <section>
        <div id="sitetitle" class="container welcome">
            <div class="row blocktitle">
                <div class="col-md-10 col-md-offset-1">
                    <?php wp_title(); ?>
                    <p class="blocksubtitlesmall"><?php _e( '[sahyt]', 'tfdegreesnelis' ); ?></p>
                </div>
            </div>
        </div>
    </section>
<?php endif; ?>

RESULT:

» Page 2

@24degrees have you checked your stylesheet, it might be getting added there!

Yeah I did. It is just one big mystery out here :wink:

I’ve disabled my css already and still the same thing happens. Also checked js. Weird thing is that there’s no ‘code’ for the chevron sign anywhere in my project. I use Atom and did some searches throughout the project on several codes that would produce the chevron thing.