I'm using the T3 Blank framework to build a site. I want to modify the position of the title and image elements on a blog layout. I copied the com_content files into my template HTML folder and modified the files, but it did not work. When I then inspected the page, it was not using the com-content files in the first place as the HTML output was not the same. My page is structured as so:
<article>
<header class="article-header clearfix">
<h2 class="article-title" itemprop="name">
Star Sailors live and online <meta itemprop="url" content="http://proactive.under-development.info/5-star-sailors-live-and-online">
</h2>
</header>
<!-- Aside -->
<!-- //Aside -->
<section class="article-intro clearfix" itemprop="articleBody">
<div class="pull-left item-image"> <img src="/images/news/starsailors1.jpg" alt="" itemprop="thumbnailUrl"> </div>
<p>The inaugural Star Sailors League Finals regatta in Nassau, Bahamas, brought together the world's top sailors for the first time since the London 2012 Olympics.</p>
</section>
<!-- footer -->
<!-- //footer -->
<section class="readmore">
<a class="btn btn-default" href="/5-star-sailors-live-and-online" itemprop="url">
<span>
Read more... </span>
</a>
</section>
</article>
After some extensive searching it appears this is being generated from a file within the pugins/system/t3/base etc etc
Why is the file located here and will my amends be overwritten when updated?
Lee