Hi guys.
I have been searching around my template files for the index.php to add the code line to call Bootstrap css, but
could not find it.
Where to add code line to link Bootstrap css to my template?
Thanks
<?php
/**
*
* Default view
*
* @version 1.0.0
* @package Gavern Framework
* @copyright Copyright (C) 2010 - 2011 GavickPro. All rights reserved.
*
*/
// No direct access.
defined('_JEXEC') or die;
//
$app = JFactory::getApplication();
$user = JFactory::getUser();
// getting User ID
$userID = $user->get('id');
// getting params
$option = JRequest::getCmd('option', '');
$view = JRequest::getCmd('view', '');
// defines if com_users
define('GK_COM_USERS', $option == 'com_users' && ($view == 'login' || $view == 'registration'));
// other variables
$btn_login_text = ($userID == 0) ? JText::_('TPL_GK_LANG_LOGIN') : JText::_('TPL_GK_LANG_LOGOUT');
$tpl_page_suffix = $this->page_suffix != '' ? ' class="'.$this->page_suffix.'"' : '';
// make sure that the modal will be loaded
JHTML::_('behavior.modal');
// content class
$gkContentClass = '';
if($this->API->modules('header') == 0) {
$gkContentClass = 'gkContentTopBorder ';
}
if($this->API->modules('sidebar') == 0) {
$gkContentClass = 'gkContentNoSidebar';
}
if($gkContentClass != '') {
$gkContentClass = ' class="'.$gkContentClass.'"';
}
?>
<!DOCTYPE html>