> Please open your index.php to edit
> Pleae use $doc->addStyleSheet to include the CSS file and $doc->addScript to add the JS files
> Please also add $doc = JFactory::getDocument() at the start
<?php
$doc = JFactory::getDocument();
$doc->addStyleSheet('templates/' . $this->template . '/css/style.css');
$doc->addScript('/templates/' . $this->template . '/js/main.js', 'text/javascript');
?>
<!DOCTYPE html>
<html>
<head>
>