Jump to content

Odd navigation appearing


Pip
 Share

Recommended Posts

Hi Guys

 

Working on a project at the moment. 

The actual design should end after the "All Rights Reserved" 

Oddly, I'm getting this extra piece of content (extra navigation) upon viewing as unlogged in in PW. See photo.

 

image.png.565919e1bee5e06b25c6b118c81bae93.png

 

Upon checking the page source on the browser, I'm getting this. 

image.thumb.png.bbdcedc1862dfdcea9b2e99536b2e4b5.png

Seems Processwire is adding some code. Edit this page is normal but an extra set of navigation and content? 

 

Providing the template code for reference as well: 
image.thumb.png.680e092975f64e9b5eec0935683d8a2e.png

Link to comment
Share on other sites

1 minute ago, Gideon So said:

Hi  @Pip

Did you check the template setting to see if another file is append to the template?

Gideon

 

Hi @Gideon So

Thanks for replying. I have. None really. I literally copied and pasted the template we got from Evato and that's it. 

 


<!DOCTYPE html>
<html class="wide wow-animation" lang="en">
  <head>
    <!-- Site Title-->
    <title>Home</title>
    <meta name="format-detection" content="telephone=no">
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta charset="utf-8">
    <link rel="icon" href="<?php echo $config->urls->templates; ?>images/favicon.ico" type="image/x-icon">
    <!-- Stylesheets-->
    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto+Mono:300,400,500,700">
    <link rel="stylesheet" href="<?php echo $config->urls->templates; ?>css/bootstrap.css">
    <link rel="stylesheet" href="<?php echo $config->urls->templates; ?>css/fonts.css">
    <link rel="stylesheet" href="<?php echo $config->urls->templates; ?>css/style.css">
    <style>.ie-panel{display: none;background: #212121;padding: 10px 0;box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3);clear: both;text-align:center;position: relative;z-index: 1;} html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {display: block;}</style>
  </head>
  <body>
    <div class="ie-panel"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img src="<?php echo $config->urls->templates; ?>images/ie8-panel/warning_bar_0000_us.jpg" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a></div>
    <!-- Page Loader-->
    <div class="preloader" id="preloader">
      <div class="page-loader-logo">
        <div class="brand">
          <div class="brand__name"><img src="<?php echo $config->urls->templates; ?>images/logo-default-176x50.png" alt="" width="176" height="50"/>
          </div>
        </div>
      </div>
      <div class="page-loader-body">
        <div id="loadingProgressG">
          <div class="loadingProgressG" id="loadingProgressG_1"></div>
        </div>
      </div>
    </div>
    <!-- Page-->
    <div class="page">
      <!-- Page Header-->
      <header class="page-header section" id="home">
        <!-- RD Navbar-->
        <div class="rd-navbar-wrap">
          <nav class="rd-navbar" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-sm-device-layout="rd-navbar-fixed" data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static" data-xl-device-layout="rd-navbar-static" data-xl-layout="rd-navbar-static" data-xxl-device-layout="rd-navbar-static" data-xxl-layout="rd-navbar-static" data-stick-up-clone="false" data-md-stick-up-offset="113px" data-lg-stick-up-offset="138px" data-xl-stick-up-offset="138px" data-md-stick-up="true" data-lg-stick-up="true" data-xl-stick-up="true">
            <div class="rd-navbar-aside-outer">
              <div class="rd-navbar-aside">
                <!-- RD Navbar Panel -->
                <div class="rd-navbar-panel">
                  <button class="rd-navbar-toggle" data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
                  <!-- RD Navbar Brand-->
                  <div class="rd-navbar-brand"><a class="brand" href="index.html">
                      <div class="brand__name"><img src="<?php echo $config->urls->templates; ?>images/logo-default-176x50.png" alt="" width="176" height="50"/>
                      </div></a></div>
                </div>
                <!-- RD Navbar Content-->
                <div class="rd-navbar-content-outer">
                  <div class="rd-navbar-content__toggle rd-navbar-static--hidden" data-rd-navbar-toggle=".rd-navbar-content"><span></span></div>
                  <div class="rd-navbar-content">
                    <ul class="rd-navbar-items-list"> 
                      <li>
                        <div class="unit unit-spacing-sm flex-row align-items-center">
                          <div class="unit__left"><span class="icon icon-md icon-primary fl-bigmug-line-trophy55"></span></div>
                          <div class="unit__body">
                            <p>#1 International <br> Architecture Company</p>
                          </div>
                        </div>
                      </li>
                      <li>
                        <div class="unit unit-spacing-sm flex-row align-items-center">
                          <div class="unit__left"><span class="icon icon-md icon-primary fl-bigmug-line-circular220"></span></div>
                          <div class="unit__body">
                            <p>Certified <br> ISO 9001:2008</p>
                          </div>
                        </div>
                      </li>
                    </ul>
                    <div class="rd-navbar-content__item"><a class="button button-xs button-lighter" href="#" >Contact Us</a></div>
                  </div>
                </div>
              </div>
            </div>
            <div class="rd-navbar-main-outer">
              <div class="rd-navbar-main">
                <!-- RD Navbar Nav -->
                <div class="rd-navbar-nav-wrap">
                  <!-- RD Navbar Nav-->
                  <ul class="rd-navbar-nav">
                    <li class="active"><a href="#home">Home</a>
                    </li>
					<?php 
					  foreach ($pages->find("template=basic-page, sort=sort") as $child) {
					  ?>  
                    <li><a href="#<?php echo strtolower($child->title); ?>"><?php echo $child->title; ?></a>
                    </li>
					<?php }?>  
                  </ul>
                </div>
              </div>
            </div>
          </nav>
        </div>
      </header>
      <!-- Swiper -->
      <section class="section swiper-slider_style-1">
        <div class="swiper-container swiper-slider swiper-slider_height-1" data-loop="true" data-autoplay="4200" data-simulate-touch="false" data-additional-slides="0" data-custom-prev="#swiper-prev" data-custom-next="#swiper-next" data-custom-slide-effect="interLeaveEffect">
          <div class="swiper-wrapper">
            <div class="swiper-slide context-light">
              <div class="slide-inner" style="background-image: url(<?php echo $config->urls->templates; ?>images/slide-1.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Welcome to <br> Xtercon</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">Leading Architecture Solutions Provider</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide">
              <div class="slide-inner" style="background-image: url(<?php echo $config->urls->templates; ?>images/slide-2.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Designing Your <br> Daily Comfort</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">Top-notch Architecture Services</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide">
              <div class="slide-inner" style="background-image: url(<?php echo $config->urls->templates; ?>images/slide-3.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Creating Stunning <br> Architecture</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">100% High Quality Guarantee</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="swiper-pagination"></div>
        </div>
        <div class="swiper-navigation swiper-navigation_modern">
          <div class="swiper-button-prev" id="swiper-prev"></div>
          <div class="swiper-button-next" id="swiper-next"></div>
        </div>
      </section>

      <!-- Production-->
      <section class="section section-md bg-default" id="services">
        <div class="container">
          <div class="row row-30 row-flex">
            <div class="col-lg-3 col-sm-6 wow fadeIn">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-pencil-ruler2"></div>
                <p class="box-feature__title">Project Planning</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".1s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-pencil-ruler"></div>
                <p class="box-feature__title">Architecture Engineering</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".2s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-tree"></div>
                <p class="box-feature__title">Landscape Design</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".3s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-apartment"></div>
                <p class="box-feature__title">Turnkey Construction</p>
              </article>
            </div>
          </div>
        </div>
      </section>

      <!-- CTA-->
      <section class="section section-sm bg-gray-darker">
        <div class="container">
          <div class="row row-30 justify-content-md-between align-items-center">
            <div class="col-md-8 col-lg-6 col-xl-auto">
              <h3>Make Your Dream Project a Reality!</h3>
            </div>
            <div class="col-auto"><a class="button button-primary button-width-174" href="#">Contact Us</a></div>
          </div>
        </div>
      </section>

		
	 <?php
		$counter = 0; 
		foreach ($pages->find("template=service, sort=position") as $child) {
			$counter++; 
			
			if ($counter%2==1) {
		?> 	
	
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4><?php echo $child->title;?></h4>
                <?php echo $child->body;?>
              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="<?php echo $config->urls->templates; ?>images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>	
	    <?php } else { ?>
	  
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="<?php echo $config->urls->templates; ?>images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
			  <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4><?php echo $child->title;?></h4>
                <?php echo $child->body;?>
              </div>
            </div>
            
            </div>
          </div>
        </div>
      </section>	
		<?php } } ?> 
      <!-- Stocks Rating-->
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>Useful Information for Investors</h4>
                <p>Investments in modern and advanced architectural technologies enable significant improvements to our company’s efficiency.</p>
                <p>As the most rapidly developing architecture company in the country, we are glad to announce that young companies and other partners we work with, support our investment initiative. Read more about it in our brochure.</p><a class="button button-dark-outline" href="#">get a brochure</a>
              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <div class="col-6"><img src="<?php echo $config->urls->templates; ?>images/about-1-273x214.jpg" alt="" width="273" height="214"/><img src="<?php echo $config->urls->templates; ?>images/about-2-273x214.jpg" alt="" width="273" height="214"/>
                </div>
                <div class="col-6"><img src="<?php echo $config->urls->templates; ?>images/about-3-273x451.jpg" alt="" width="273" height="451"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Stocks Rating-->
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center flex-lg-row-reverse">
            <div class="col-md-10 col-lg-5 col-xl-4 wow fadeInRight">
              <h4>Stocks Rating</h4>
              <p>Shares of Xtercon jumped 67% over the past year as our performance has been solid. An ROE of 27% and a profit margin of 11% form the backbone of the case for the company.</p><a class="button button-dark-outline" href="#">get stock market Report</a>
            </div>
            <div class="col-md-10 col-lg-7 col-xl-8 wow fadeInLeft">
              <div class="box-spacer-left">
                <div class="d3-chart" id="line-chart" style="width:100%;height: 370px; margin: 0 auto"></div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Experience since 1999-->
      <section class="section section-md bg-gray-4" id="about">
        <div class="container">
          <div class="row row-50 justify-content-md-center flex-lg-row-reverse justify-content-lg-between align-items-lg-center">
            <div class="col-md-10 col-lg-6 col-xl-5 wow fadeInRight">
              <div class="block-wrap-1">
                <h2><span>Experience</span><span class="object-decorated object-decorated_inline" style="max-width: 125px;"><span class="object-decorated__divider"></span><span class="heading-5">since 1999</span></span></h2>
                <p>Our company has been the leading provider of architecture services to clients inside and outside of the USA since 1999. We pay attention to every demand of our customers.</p>
                <div class="group-lg group-middle"><a class="button button-primary" href="#" data-toggle="modal" data-target="#exampleModal">Get a quote</a>
                  <div>
                    <div class="unit flex-row align-items-center unit-spacing-xs">
                      <div class="unit__left" style="font-size: 0;"><a class="link link-video" href="//vimeo.com/160237084" data-lightbox="iframe"></a></div>
                      <div class="unit__body">
                        <h5>Video <br> Presentation</h5>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInLeft">
              <div class="grid-layout-2x2">
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">19</div>
                    </div>
                    <p class="box-counter-modern__title">Years of experience</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">96</div>
                    </div>
                    <p class="box-counter-modern__title">Happy clients</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap"><span>#</span><span class="big">01</span></div>
                    <p class="box-counter-modern__title">Architecture company</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">264</div>
                    </div>
                    <p class="box-counter-modern__title">Successful projects</p>
                  </article>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Our Projects-->
      <section class="section section-md bg-default text-center" id="projects">
        <div class="container-fullwidth">
          <h2>Our Projects</h2>
          <!-- Owl Carousel-->
          <div class="owl-carousel owl-carousel_style-2 wow fadeIn" data-items="1" data-sm-items="2" data-lg-items="3" data-xl-items="4" data-dots="false" data-nav="true" data-loop="true" data-stage-padding="0" data-md-stage-padding="20" data-lg-stage-padding="0" data-md-margin="15" data-xl-margin="0" data-mouse-drag="false">
			  <?php 
			  foreach ($pages->find("template=project") as $child) {
			  ?>
            <div class="thumb-janez">
              <figure class="thumb-janez__image-wrap"><img src="<?php echo $config->urls->templates; ?>images/project-1-480x383.jpg" alt="" width="480" height="383"/>
              </figure>
              <div class="thumb-janez__content bg-gray-dark">
                <div class="thumb-janez__content-inner">
                  <h5><a href="#"><?php echo $child->title;?></a></h5>
                  <p><?php echo $child->body;?></p>
                </div>
              </div>
            </div>
			  <?php } ?>
          </div>
        </div>
      </section>

      <!-- Top Management-->
      <section class="section section-md bg-default" id="team">
        <div class="container">
          <!-- Section Header-->
          <div class="section__header">
            <h4>Our Team</h4>
            <div class="section__header-element"><a class="link link-medium" href="#">Contact Us</a></div>
          </div>
          <div class="row row-30">
			<?php 
			  // Echo all team members
			  foreach ($pages->find("template=team-members, sort=position") as $child) {
			  ?>
            <div class="col-md-6 col-lg-4 wow fadeInUpSmall" data-wow-delay=".3s">
                    <!-- Profile creative-->
                    <article class="profile-creative">
                      <div class="profile-creative__header"><img src="<?php echo $config->urls->templates; ?>images/top-management-1-115x119.jpg" alt="" width="115" height="119"/>
                      </div>
                      <div class="profile-creative__main" data-fixed-height="">
                        <p class="profile-creative__title"><?php echo $child->title; ?></p>
                        <p class="profile-creative__subtitle"><?php echo $child->body; ?></p>
                        <div class="profile-creative__element"><a href="mailto:<?php echo $child->mail; ?>"><?php echo $child->email; ?></a></div>
                      </div>
                    </article>
            </div>
			<?php } ?>
          </div>
        </div>
      </section>

      <!-- CTA-->
      <section class="section section-sm bg-gray-darker">
        <div class="container">
          <div class="row row-30 justify-content-md-between align-items-center">
            <div class="col-md-8 col-lg-6 col-xl-auto">
              <h3>Vitalize Your Office with Our Solutions!</h3>
            </div>
            <div class="col-auto"><a class="button button-primary button-width-174" href="#">Contact Us</a></div>
          </div>
        </div>
      </section>


      <!-- Brands-->
      <section class="section parallax-container" data-parallax-img="images/parallax-2.jpg">
        <div class="parallax-content">
          <div class="section-sm owl-outer-navigation-wrap">
            <div class="container">
              <!-- Owl Carousel-->
              <div class="owl-carousel owl-carousel_style-1 text-center" data-items="1" data-sm-items="2" data-md-items="3" data-lg-items="4" data-dots="true" data-nav="true" data-stage-padding="15" data-loop="true" data-margin="30" data-mouse-drag="false" data-nav-custom="#owl-carousel-nav">
                <div class="item"><a class="link-image" href="#"><img src="<?php echo $config->urls->templates; ?>images/brand-1-156x45.png" alt="" width="156" height="45"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="<?php echo $config->urls->templates; ?>images/brand-2-126x69.png" alt="" width="126" height="69"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="<?php echo $config->urls->templates; ?>images/brand-3-150x36.png" alt="" width="150" height="36"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="<?php echo $config->urls->templates; ?>images/brand-4-130x45.png" alt="" width="130" height="45"/></a></div>
              </div>
            </div>
            <div class="owl-outer-navigation" id="owl-carousel-nav"><a class="owl-arrow owl-arrow-prev fl-budicons-free-left161" href="#"></a><a class="owl-arrow owl-arrow-next fl-budicons-free-right163" href="#"></a></div>
          </div>
        </div>
      </section>


      <!-- Latest News-->
      <section class="section section-md bg-default" id="news">
        <div class="container">
          <!-- Section Header-->
          <div class="section__header">
            <h4>Latest News</h4>
            <div class="section__header-element"><a class="link link-md" href="#">See All News</a></div>
          </div>
          <div class="row row-50">
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">April 13, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">How Art Influences Modern Architecture Projects</a></h6>
                <p>Looking through our recent, impactful projects, we set out to ask the designers...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall" data-wow-delay=".1s">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">March 25, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">Workplace Design: Integrating the Company Logo</a></h6>
                <p>In recent years advanced materials have emerged and are having a major impact on...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall" data-wow-delay=".2s">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">February 1, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">Committing to the Future of Interior Architecture</a></h6>
                <p>Installations are often a practically invisible part of a building. Miles of...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
          </div>
        </div>
      </section>

      <!-- Page Footer-->
      <footer class="section footer-modern bg-gray-darker">
        <div class="footer-modern__inner">
          <div class="container">
            <div class="row justify-content-sm-center row-90">
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Call Us Now</h4>
                  <dl class="list-terms-inline">
                    <dt>Phone #1</dt>
                    <dd><a href="tel:#">+1 (409) 987–5874</a></dd>
                  </dl>
                  <dl class="list-terms-inline">
                    <dt>Phone #2</dt>
                    <dd><a href="tel:#">+1 (409) 123–3434</a></dd>
                  </dl>
                </article>
              </div>
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Send a Message</h4>
                  <dl class="list-terms-inline">
                    <dt>Sales department</dt>
                    <dd><a href="mailto:#">info@demolink.org</a></dd>
                  </dl>
                  <dl class="list-terms-inline">
                    <dt>Support</dt>
                    <dd><a href="mailto:#">support@demolink.org</a></dd>
                  </dl>
                </article>
              </div>
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Main Office</h4>
                  <p>6036 Richmond hwy., Alexandria, VA, 2230</p>
                  <ul class="list-inline-0">
                    <li>
                      <dl class="list-terms-inline">
                        <dt>Weekdays</dt>
                        <dd>8:00–20:00</dd>
                      </dl>
                    </li>
                    <li>
                      <dl class="list-terms-inline">
                        <dt>Weekends</dt>
                        <dd>Closed</dd>
                      </dl>
                    </li>
                  </ul>
                </article>
              </div>
            </div>
          </div>
          <div class="divider"></div>
          <div class="container text-center">
            <div class="row row-20">
              <div class="col-md-6 text-md-left">
                <!-- Rights-->
                <p class="rights"><span>Xtercon</span><span>&nbsp;&copy;&nbsp;</span><span class="copyright-year"></span>. All Rights Reserved</p>
              </div>

            </div>
          </div>
        </div>
      </footer>
    </div>
    <!-- Javascript-->
    <script src="<?php echo $config->urls->templates; ?>js/core.min.js"></script>
    <script src="<?php echo $config->urls->templates; ?>js/script.js"></script>
    <!-- coded by Ragnar-->
  </body>
</html>

This is the whole code itself. 😕 

Link to comment
Share on other sites

On the other hand, this is the source code of the page when viewed on the browser. 

 

<!DOCTYPE html>
<html class="wide wow-animation" lang="en">
  <head>
    <!-- Site Title-->
    <title>Home</title>
    <meta name="format-detection" content="telephone=no">
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta charset="utf-8">
    <link rel="icon" href="/xtercon/site/templates/images/favicon.ico" type="image/x-icon">
    <!-- Stylesheets-->
    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto+Mono:300,400,500,700">
    <link rel="stylesheet" href="/xtercon/site/templates/css/bootstrap.css">
    <link rel="stylesheet" href="/xtercon/site/templates/css/fonts.css">
    <link rel="stylesheet" href="/xtercon/site/templates/css/style.css">
    <style>.ie-panel{display: none;background: #212121;padding: 10px 0;box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3);clear: both;text-align:center;position: relative;z-index: 1;} html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {display: block;}</style>
  </head>
  <body>
    <div class="ie-panel"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img src="/xtercon/site/templates/images/ie8-panel/warning_bar_0000_us.jpg" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a></div>
    <!-- Page Loader-->
    <div class="preloader" id="preloader">
      <div class="page-loader-logo">
        <div class="brand">
          <div class="brand__name"><img src="/xtercon/site/templates/images/logo-default-176x50.png" alt="" width="176" height="50"/>
          </div>
        </div>
      </div>
      <div class="page-loader-body">
        <div id="loadingProgressG">
          <div class="loadingProgressG" id="loadingProgressG_1"></div>
        </div>
      </div>
    </div>
    <!-- Page-->
    <div class="page">
      <!-- Page Header-->
      <header class="page-header section" id="home">
        <!-- RD Navbar-->
        <div class="rd-navbar-wrap">
          <nav class="rd-navbar" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-sm-device-layout="rd-navbar-fixed" data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static" data-xl-device-layout="rd-navbar-static" data-xl-layout="rd-navbar-static" data-xxl-device-layout="rd-navbar-static" data-xxl-layout="rd-navbar-static" data-stick-up-clone="false" data-md-stick-up-offset="113px" data-lg-stick-up-offset="138px" data-xl-stick-up-offset="138px" data-md-stick-up="true" data-lg-stick-up="true" data-xl-stick-up="true">
            <div class="rd-navbar-aside-outer">
              <div class="rd-navbar-aside">
                <!-- RD Navbar Panel -->
                <div class="rd-navbar-panel">
                  <button class="rd-navbar-toggle" data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
                  <!-- RD Navbar Brand-->
                  <div class="rd-navbar-brand"><a class="brand" href="index.html">
                      <div class="brand__name"><img src="/xtercon/site/templates/images/logo-default-176x50.png" alt="" width="176" height="50"/>
                      </div></a></div>
                </div>
                <!-- RD Navbar Content-->
                <div class="rd-navbar-content-outer">
                  <div class="rd-navbar-content__toggle rd-navbar-static--hidden" data-rd-navbar-toggle=".rd-navbar-content"><span></span></div>
                  <div class="rd-navbar-content">
                    <ul class="rd-navbar-items-list"> 
                      <li>
                        <div class="unit unit-spacing-sm flex-row align-items-center">
                          <div class="unit__left"><span class="icon icon-md icon-primary fl-bigmug-line-trophy55"></span></div>
                          <div class="unit__body">
                            <p>#1 International <br> Architecture Company</p>
                          </div>
                        </div>
                      </li>
                      <li>
                        <div class="unit unit-spacing-sm flex-row align-items-center">
                          <div class="unit__left"><span class="icon icon-md icon-primary fl-bigmug-line-circular220"></span></div>
                          <div class="unit__body">
                            <p>Certified <br> ISO 9001:2008</p>
                          </div>
                        </div>
                      </li>
                    </ul>
                    <div class="rd-navbar-content__item"><a class="button button-xs button-lighter" href="#" >Contact Us</a></div>
                  </div>
                </div>
              </div>
            </div>
            <div class="rd-navbar-main-outer">
              <div class="rd-navbar-main">
                <!-- RD Navbar Nav -->
                <div class="rd-navbar-nav-wrap">
                  <!-- RD Navbar Nav-->
                  <ul class="rd-navbar-nav">
                    <li class="active"><a href="#home">Home</a>
                    </li>
					  
                    <li><a href="#services">Services</a>
                    </li>
					  
                    <li><a href="#projects">Projects</a>
                    </li>
					  
                    <li><a href="#programs">Programs</a>
                    </li>
					  
                    <li><a href="#team">Team</a>
                    </li>
					  
                    <li><a href="#careers">Careers</a>
                    </li>
					  
                  </ul>
                </div>
              </div>
            </div>
          </nav>
        </div>
      </header>
      <!-- Swiper -->
      <section class="section swiper-slider_style-1">
        <div class="swiper-container swiper-slider swiper-slider_height-1" data-loop="true" data-autoplay="4200" data-simulate-touch="false" data-additional-slides="0" data-custom-prev="#swiper-prev" data-custom-next="#swiper-next" data-custom-slide-effect="interLeaveEffect">
          <div class="swiper-wrapper">
            <div class="swiper-slide context-light">
              <div class="slide-inner" style="background-image: url(/xtercon/site/templates/images/slide-1.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Welcome to <br> Xtercon</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">Leading Architecture Solutions Provider</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide">
              <div class="slide-inner" style="background-image: url(/xtercon/site/templates/images/slide-2.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Designing Your <br> Daily Comfort</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">Top-notch Architecture Services</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="swiper-slide">
              <div class="slide-inner" style="background-image: url(/xtercon/site/templates/images/slide-3.jpg);">
                <div class="swiper-slide-caption">
                  <div class="container">
                    <h1 data-caption-animate="fadeInUpSmall">Creating Stunning <br> Architecture</h1>
                    <div class="object-decorated"><span class="object-decorated__divider" data-caption-animate="fadeInRightSmall" data-caption-delay="300"></span>
                      <h4 data-caption-animate="fadeInRightSmall" data-caption-delay="550">100% High Quality Guarantee</h4>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="swiper-pagination"></div>
        </div>
        <div class="swiper-navigation swiper-navigation_modern">
          <div class="swiper-button-prev" id="swiper-prev"></div>
          <div class="swiper-button-next" id="swiper-next"></div>
        </div>
      </section>

      <!-- Production-->
      <section class="section section-md bg-default" id="services">
        <div class="container">
          <div class="row row-30 row-flex">
            <div class="col-lg-3 col-sm-6 wow fadeIn">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-pencil-ruler2"></div>
                <p class="box-feature__title">Project Planning</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".1s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-pencil-ruler"></div>
                <p class="box-feature__title">Architecture Engineering</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".2s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-tree"></div>
                <p class="box-feature__title">Landscape Design</p>
              </article>
            </div>
            <div class="col-lg-3 col-sm-6 wow fadeIn" data-wow-delay=".3s">
              <!-- Box feature-->
              <article class="box-feature">
                <div class="box-feature__icon linearicons-apartment"></div>
                <p class="box-feature__title">Turnkey Construction</p>
              </article>
            </div>
          </div>
        </div>
      </section>

      <!-- CTA-->
      <section class="section section-sm bg-gray-darker">
        <div class="container">
          <div class="row row-30 justify-content-md-between align-items-center">
            <div class="col-md-8 col-lg-6 col-xl-auto">
              <h3>Make Your Dream Project a Reality!</h3>
            </div>
            <div class="col-auto"><a class="button button-primary button-width-174" href="#">Contact Us</a></div>
          </div>
        </div>
      </section>

		
	  	
	
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>BIM Modelling Services</h4>
                We aid in developing intelligent BIM models based on elevations, details, floor plans and sections provided by the clients from conceptual design to finish product on a large number of projects on a consistent basis. A building modeled in BIM allows design analysis, aids in design communication and planning aside from multiple other use case.              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>	
	    	  
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
			  <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>2D to 3D BIM Conversion</h4>
                We cover the labor-intensive process of converting your existing 2D drawing into a 3D BIM model by converting 2D AutoCAD drawings to more accurate and information rich 3D BIM model. A 3D BIM model with enhanced visualization helps increase collaboration, validate design for clashes and optimize the onsite construction process.              </div>
            </div>
            
            </div>
          </div>
        </div>
      </section>	
		 	
	
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>Visualization</h4>
                We perform Real-time visualization allows you to view your model as an accurate and realistic 3D visualization, as you design. It is also sometimes referred to as rendering. It helps he client to better understand how a building will look and function in real life.              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>	
	    	  
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
			  <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>Clash Detection</h4>
                We perform BIM Clash detection across models of various disciplines which facilitates the effective identification, inspection, and reporting of interference clash in a typical 3D project model, at the document stage instead of on-site, during construction. Clash reports of interferences are later assigned with corresponding decision makers in the project team involved with the conflict. Clash detection allows informed decision making and minimize construction errors resulting in inefficiencies that may cause delays and budget issues.              </div>
            </div>
            
            </div>
          </div>
        </div>
      </section>	
		 	
	
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>BIM Consultancy</h4>
                We are ready to assist in building a BIM ecosystem in your company. Our goal is to guide industry professionals towards a smooth project transition with the adoption of modern day design technologies to replace traditional building practices. Our consulting experts will guide you through the business and process changes as well as technical challenges involved in the implementation and adoption of BIM to gain a competitive advantage.              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>	
	    	  
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/>
                </div>
              </div>
			  <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>Revit Family Creation Services</h4>
                We ensure that the Revit families are developed based on the model and project requirements. Our expertise lies in creating parametric loadable BIM families in Revit that can be used for BIM libraries for multiple projects. These are particularly used by architects, engineers, product manufacturers, fabricators, etc. to optimize their planning, designing and cost estimation for projects. We build BIM catalogue and libraries adapting to various LOD specifications. These models will be embedded with critical data/information. Designs can come from existing 2D drawings, sketches, 3D models (of non-BIM software) or a physical representation.              </div>
            </div>
            
            </div>
          </div>
        </div>
      </section>	
		 
      <!-- Stocks Rating-->
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center justify-content-xl-between">
            <div class="col-md-10 col-xl-5 wow fadeInLeft">
              <div class="box-spacer-1">
                <h4>Useful Information for Investors</h4>
                <p>Investments in modern and advanced architectural technologies enable significant improvements to our company’s efficiency.</p>
                <p>As the most rapidly developing architecture company in the country, we are glad to announce that young companies and other partners we work with, support our investment initiative. Read more about it in our brochure.</p><a class="button button-dark-outline" href="#">get a brochure</a>
              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInRight">
              <div class="row grid-2">
                <div class="col-6"><img src="/xtercon/site/templates/images/about-1-273x214.jpg" alt="" width="273" height="214"/><img src="/xtercon/site/templates/images/about-2-273x214.jpg" alt="" width="273" height="214"/>
                </div>
                <div class="col-6"><img src="/xtercon/site/templates/images/about-3-273x451.jpg" alt="" width="273" height="451"/>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Stocks Rating-->
      <section class="section section-md bg-default">
        <div class="container">
          <div class="row row-50 justify-content-md-center justify-content-lg-start align-items-lg-center flex-lg-row-reverse">
            <div class="col-md-10 col-lg-5 col-xl-4 wow fadeInRight">
              <h4>Stocks Rating</h4>
              <p>Shares of Xtercon jumped 67% over the past year as our performance has been solid. An ROE of 27% and a profit margin of 11% form the backbone of the case for the company.</p><a class="button button-dark-outline" href="#">get stock market Report</a>
            </div>
            <div class="col-md-10 col-lg-7 col-xl-8 wow fadeInLeft">
              <div class="box-spacer-left">
                <div class="d3-chart" id="line-chart" style="width:100%;height: 370px; margin: 0 auto"></div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Experience since 1999-->
      <section class="section section-md bg-gray-4" id="about">
        <div class="container">
          <div class="row row-50 justify-content-md-center flex-lg-row-reverse justify-content-lg-between align-items-lg-center">
            <div class="col-md-10 col-lg-6 col-xl-5 wow fadeInRight">
              <div class="block-wrap-1">
                <h2><span>Experience</span><span class="object-decorated object-decorated_inline" style="max-width: 125px;"><span class="object-decorated__divider"></span><span class="heading-5">since 1999</span></span></h2>
                <p>Our company has been the leading provider of architecture services to clients inside and outside of the USA since 1999. We pay attention to every demand of our customers.</p>
                <div class="group-lg group-middle"><a class="button button-primary" href="#" data-toggle="modal" data-target="#exampleModal">Get a quote</a>
                  <div>
                    <div class="unit flex-row align-items-center unit-spacing-xs">
                      <div class="unit__left" style="font-size: 0;"><a class="link link-video" href="//vimeo.com/160237084" data-lightbox="iframe"></a></div>
                      <div class="unit__body">
                        <h5>Video <br> Presentation</h5>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
            <div class="col-md-10 col-lg-6 wow fadeInLeft">
              <div class="grid-layout-2x2">
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">19</div>
                    </div>
                    <p class="box-counter-modern__title">Years of experience</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">96</div>
                    </div>
                    <p class="box-counter-modern__title">Happy clients</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap"><span>#</span><span class="big">01</span></div>
                    <p class="box-counter-modern__title">Architecture company</p>
                  </article>
                </div>
                <div class="grid-item">
                  <!-- Box counter-->
                  <article class="box-counter-modern">
                    <div class="box-counter-modern__wrap">
                      <div class="counter" data-zero="true">264</div>
                    </div>
                    <p class="box-counter-modern__title">Successful projects</p>
                  </article>
                </div>
              </div>
            </div>
          </div>
        </div>
      </section>

      <!-- Our Projects-->
      <section class="section section-md bg-default text-center" id="projects">
        <div class="container-fullwidth">
          <h2>Our Projects</h2>
          <!-- Owl Carousel-->
          <div class="owl-carousel owl-carousel_style-2 wow fadeIn" data-items="1" data-sm-items="2" data-lg-items="3" data-xl-items="4" data-dots="false" data-nav="true" data-loop="true" data-stage-padding="0" data-md-stage-padding="20" data-lg-stage-padding="0" data-md-margin="15" data-xl-margin="0" data-mouse-drag="false">
			              <div class="thumb-janez">
              <figure class="thumb-janez__image-wrap"><img src="/xtercon/site/templates/images/project-1-480x383.jpg" alt="" width="480" height="383"/>
              </figure>
              <div class="thumb-janez__content bg-gray-dark">
                <div class="thumb-janez__content-inner">
                  <h5><a href="#">Rulang Primary School</a></h5>
                  <p>An Addition and Alteration project of Ministry of Education Singapore which was led by Interconsultants Pte ltd. The Existing school was fitted with new Indoor Sports hall and additional classroom blocks. BIM was used from the Massing till production of Construction drawings.</p>
                </div>
              </div>
            </div>
			              <div class="thumb-janez">
              <figure class="thumb-janez__image-wrap"><img src="/xtercon/site/templates/images/project-1-480x383.jpg" alt="" width="480" height="383"/>
              </figure>
              <div class="thumb-janez__content bg-gray-dark">
                <div class="thumb-janez__content-inner">
                  <h5><a href="#">HDB</a></h5>
                  <p>Assists Interconsultants Pte ltd in their various Public Housing Developments projects using BIM from Design stage till Construction.</p>
                </div>
              </div>
            </div>
			              <div class="thumb-janez">
              <figure class="thumb-janez__image-wrap"><img src="/xtercon/site/templates/images/project-1-480x383.jpg" alt="" width="480" height="383"/>
              </figure>
              <div class="thumb-janez__content bg-gray-dark">
                <div class="thumb-janez__content-inner">
                  <h5><a href="#">Punggol Way Primary School</a></h5>
                  <p>A new primary school development of Ministry of Education Singapore, which was built by using PPVC, Designed by Interconsultants. Pte. Ltd. BIM was used in Massing design studies, coordination and clash detection during design and tender stage, and produced drawings for construction.</p>
                </div>
              </div>
            </div>
			              <div class="thumb-janez">
              <figure class="thumb-janez__image-wrap"><img src="/xtercon/site/templates/images/project-1-480x383.jpg" alt="" width="480" height="383"/>
              </figure>
              <div class="thumb-janez__content bg-gray-dark">
                <div class="thumb-janez__content-inner">
                  <h5><a href="#">Junior College Singapore</a></h5>
                  <p>Led by Interconsultants Pte ltd. An Addition and Alteration project of Ministry of Education Singapore. The existing school was modeled in BIM and is being used to study design proposals.</p>
                </div>
              </div>
            </div>
			            </div>
        </div>
      </section>

      <!-- Top Management-->
      <section class="section section-md bg-default" id="team">
        <div class="container">
          <!-- Section Header-->
          <div class="section__header">
            <h4>Our Team</h4>
            <div class="section__header-element"><a class="link link-medium" href="#">Contact Us</a></div>
          </div>
          <div class="row row-30">
			            <div class="col-md-6 col-lg-4 wow fadeInUpSmall" data-wow-delay=".3s">
                    <!-- Profile creative-->
                    <article class="profile-creative">
                      <div class="profile-creative__header"><img src="/xtercon/site/templates/images/top-management-1-115x119.jpg" alt="" width="115" height="119"/>
                      </div>
                      <div class="profile-creative__main" data-fixed-height="">
                        <p class="profile-creative__title">Brian Ngo</p>
                        <p class="profile-creative__subtitle"></p>
                        <div class="profile-creative__element"><a href="mailto:">brianngo@xtercon.com</a></div>
                      </div>
                    </article>
            </div>
			            <div class="col-md-6 col-lg-4 wow fadeInUpSmall" data-wow-delay=".3s">
                    <!-- Profile creative-->
                    <article class="profile-creative">
                      <div class="profile-creative__header"><img src="/xtercon/site/templates/images/top-management-1-115x119.jpg" alt="" width="115" height="119"/>
                      </div>
                      <div class="profile-creative__main" data-fixed-height="">
                        <p class="profile-creative__title">Jeremy Goh</p>
                        <p class="profile-creative__subtitle"></p>
                        <div class="profile-creative__element"><a href="mailto:">jeremygoh@xtercon.com</a></div>
                      </div>
                    </article>
            </div>
			            <div class="col-md-6 col-lg-4 wow fadeInUpSmall" data-wow-delay=".3s">
                    <!-- Profile creative-->
                    <article class="profile-creative">
                      <div class="profile-creative__header"><img src="/xtercon/site/templates/images/top-management-1-115x119.jpg" alt="" width="115" height="119"/>
                      </div>
                      <div class="profile-creative__main" data-fixed-height="">
                        <p class="profile-creative__title">Martie Pelayo</p>
                        <p class="profile-creative__subtitle"></p>
                        <div class="profile-creative__element"><a href="mailto:">martiepelayo@xtercon.com</a></div>
                      </div>
                    </article>
            </div>
			          </div>
        </div>
      </section>

      <!-- CTA-->
      <section class="section section-sm bg-gray-darker">
        <div class="container">
          <div class="row row-30 justify-content-md-between align-items-center">
            <div class="col-md-8 col-lg-6 col-xl-auto">
              <h3>Vitalize Your Office with Our Solutions!</h3>
            </div>
            <div class="col-auto"><a class="button button-primary button-width-174" href="#">Contact Us</a></div>
          </div>
        </div>
      </section>


      <!-- Brands-->
      <section class="section parallax-container" data-parallax-img="images/parallax-2.jpg">
        <div class="parallax-content">
          <div class="section-sm owl-outer-navigation-wrap">
            <div class="container">
              <!-- Owl Carousel-->
              <div class="owl-carousel owl-carousel_style-1 text-center" data-items="1" data-sm-items="2" data-md-items="3" data-lg-items="4" data-dots="true" data-nav="true" data-stage-padding="15" data-loop="true" data-margin="30" data-mouse-drag="false" data-nav-custom="#owl-carousel-nav">
                <div class="item"><a class="link-image" href="#"><img src="/xtercon/site/templates/images/brand-1-156x45.png" alt="" width="156" height="45"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="/xtercon/site/templates/images/brand-2-126x69.png" alt="" width="126" height="69"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="/xtercon/site/templates/images/brand-3-150x36.png" alt="" width="150" height="36"/></a></div>
                <div class="item"><a class="link-image" href="#"><img src="/xtercon/site/templates/images/brand-4-130x45.png" alt="" width="130" height="45"/></a></div>
              </div>
            </div>
            <div class="owl-outer-navigation" id="owl-carousel-nav"><a class="owl-arrow owl-arrow-prev fl-budicons-free-left161" href="#"></a><a class="owl-arrow owl-arrow-next fl-budicons-free-right163" href="#"></a></div>
          </div>
        </div>
      </section>


      <!-- Latest News-->
      <section class="section section-md bg-default" id="news">
        <div class="container">
          <!-- Section Header-->
          <div class="section__header">
            <h4>Latest News</h4>
            <div class="section__header-element"><a class="link link-md" href="#">See All News</a></div>
          </div>
          <div class="row row-50">
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">April 13, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">How Art Influences Modern Architecture Projects</a></h6>
                <p>Looking through our recent, impactful projects, we set out to ask the designers...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall" data-wow-delay=".1s">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">March 25, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">Workplace Design: Integrating the Company Logo</a></h6>
                <p>In recent years advanced materials have emerged and are having a major impact on...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
            <div class="col-md-6 col-lg-4 wow fadeInRightSmall" data-wow-delay=".2s">
              <!-- Post minimal-->
              <article class="post-minimal">
                <time class="post-minimal__time" datetime="2018">February 1, 2018</time>
                <div class="post-minimal__divider"></div>
                <h6 class="post-minimal__title"><a href="#">Committing to the Future of Interior Architecture</a></h6>
                <p>Installations are often a practically invisible part of a building. Miles of...</p><a class="button button-xs button-lighter" href="#">read more</a>
              </article>
            </div>
          </div>
        </div>
      </section>

      <!-- Page Footer-->
      <footer class="section footer-modern bg-gray-darker">
        <div class="footer-modern__inner">
          <div class="container">
            <div class="row justify-content-sm-center row-90">
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Call Us Now</h4>
                  <dl class="list-terms-inline">
                    <dt>Phone #1</dt>
                    <dd><a href="tel:#">+1 (409) 987–5874</a></dd>
                  </dl>
                  <dl class="list-terms-inline">
                    <dt>Phone #2</dt>
                    <dd><a href="tel:#">+1 (409) 123–3434</a></dd>
                  </dl>
                </article>
              </div>
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Send a Message</h4>
                  <dl class="list-terms-inline">
                    <dt>Sales department</dt>
                    <dd><a href="mailto:#">info@demolink.org</a></dd>
                  </dl>
                  <dl class="list-terms-inline">
                    <dt>Support</dt>
                    <dd><a href="mailto:#">support@demolink.org</a></dd>
                  </dl>
                </article>
              </div>
              <div class="col-sm-10 col-md-6 col-lg-4">
                <!-- Box decorated-->
                <article class="box-decorated">
                  <h4 class="box-decorated__title">Main Office</h4>
                  <p>6036 Richmond hwy., Alexandria, VA, 2230</p>
                  <ul class="list-inline-0">
                    <li>
                      <dl class="list-terms-inline">
                        <dt>Weekdays</dt>
                        <dd>8:00–20:00</dd>
                      </dl>
                    </li>
                    <li>
                      <dl class="list-terms-inline">
                        <dt>Weekends</dt>
                        <dd>Closed</dd>
                      </dl>
                    </li>
                  </ul>
                </article>
              </div>
            </div>
          </div>
          <div class="divider"></div>
          <div class="container text-center">
            <div class="row row-20">
              <div class="col-md-6 text-md-left">
                <!-- Rights-->
                <p class="rights"><span>Xtercon</span><span>&nbsp;&copy;&nbsp;</span><span class="copyright-year"></span>. All Rights Reserved</p>
              </div>

            </div>
          </div>
        </div>
      </footer>
    </div>
    <!-- Javascript-->
    <script src="/xtercon/site/templates/js/core.min.js"></script>
    <script src="/xtercon/site/templates/js/script.js"></script>
    <!-- coded by Ragnar-->
  </body>
</html><!DOCTYPE html>
<html lang="en">
	<head id="html-head">
		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<title>Home</title>
		<link rel="stylesheet" type="text/css" href="/xtercon/site/templates/styles/main.css" />
		<script src="/xtercon/site/templates/scripts/main.js"></script>
	</head>
	<body id="html-body">

		<p id="topnav">
			<a href='/xtercon/'>Home</a> / <a href='/xtercon/services/'>Services</a> / <a href='/xtercon/projects/'>Projects</a> / <a href='/xtercon/programs/'>Programs</a> / <a href='/xtercon/team/'>Team</a> / <a href='/xtercon/careers/'>Careers</a>		</p>
		
		<hr />
		
		<h1 id="headline">
						Home		</h1>
		
		<div id="content">
			Default content
		</div>
	
				<ul> 
			<li><a href='/xtercon/services/'>Services</a></li><li><a href='/xtercon/projects/'>Projects</a></li><li><a href='/xtercon/programs/'>Programs</a></li><li><a href='/xtercon/team/'>Team</a></li><li><a href='/xtercon/careers/'>Careers</a></li>		</ul>	
				
			
	</body>
</html>

 

Link to comment
Share on other sites

Check your config file for something like this:

$config->prependTemplateFile = '_init.php';
$config->appendTemplateFile = '_main.php';

I think this will be the line with the _main.php 😉 

This is a standard configuration in the Regular Site Profile

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...