mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
22 lines
468 B
PHP
22 lines
468 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Bootstrap 4 - Typesetter CMS theme
|
||
|
* Master template
|
||
|
* See settings.php for configuration options
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Load theme javascripts
|
||
|
*
|
||
|
*/
|
||
|
$page->head_js[] = dirname(rawurldecode($page->theme_path)) . '/_common/script.js';
|
||
|
$page->head_js[] = dirname(rawurldecode($page->theme_path)) . '/_common/menu.js';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Include template.php from the current layout subdirectory
|
||
|
*
|
||
|
*/
|
||
|
include($page->theme_dir . '/' . $page->theme_color . '/template.php');
|