Subversion Repositories web.active

Rev

Rev 11 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download

<?php namespace ProcessWire;

// home.php (homepage) template file. 
// See README.txt for more information

// Primary content is the page body copy and navigation to children. 
// See the _func.php file for the renderNav() function example


// header test on the page
//$main_text = $page->main_text;

// main content of the page
$content = '
      <div id="body_text" class="content_header_text_box">
        <div class="container">
          <div class="row">
            <div class="col-md-12">
              <div class="title">
                <br />
                <h2><strong class="blue">'.strtok($page->headline, " ").'</strong><strong class="black">'.strstr($page->headline," ").'</strong></h2></br>'.'
                <span class="text-left">'.$page->body.'</span>
              </div>
            </div>
          </div>

          <div class="row">
            <div class="col-xl-8 col-lg-8 col-md-8 col-sm-12">
              <div class="body-text">
                <blockquote>
                  <p class="text-left">'.$page->quote_text.'</p>
                  <p class="text-right">'.$page->quote_name.'</p>
                </blockquote>
              </div>
            </div>

            <div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 pa-ing">
              <div class="content_header_text">
                <p>
                  <a href="https://rldactive.sportbitapp.nl/proeflesplanner/">
                    <img class="static" id="imgProef" style="width:100%;" src="'.$config->urls->templates.'styles/images/proefleskaartje.jpg" alt="Proefles" data-toggle="tooltip" data-placement="bottom" title="Gratis proefles!">
                  </a>
                </p>
              </div>
            </div>
          </div>          
          
          
        </div>
      </div>
           ';