-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.php
226 lines (196 loc) · 7.83 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
/**
* @package Lightning
*
* @copyright Copyright (C) 2020 JoomJunk. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\FileLayout;
use Joomla\CMS\Uri\Uri;
/** @var Joomla\CMS\Document\HtmlDocument $this */
$app = Factory::getApplication();
$menuObj = $app->getMenu();
$wa = $this->getWebAssetManager();
$sitename = htmlspecialchars($app->get('sitename'), ENT_QUOTES, 'UTF-8');
$pageclass = $menuObj->getActive()->getParams()->get('pageclass_sfx');
$themeSwitcher = (boolean)$this->params->get('theme-switcher', 1);
$hideComponent = (boolean)$this->params->get('hide-component', 0);
$fontAwesome = (boolean)$this->params->get('font-awesome-thats-actually-rather-shit', 1);
$googleFont = $this->params->get('google-font', '');
$faviconPath = (boolean)$this->params->get('favicon-override', 0)
? Uri::root()
: 'templates/' . $this->template . '/favicon';
// Load switcher CSS
if ($themeSwitcher)
{
$wa->useStyle('switch.css');
}
// Load assets
$wa->usePreset('template.lightning')
->useStyle('template.lightning.user')
->useScript('template.lightning.user');
// Font Awesome
if ($fontAwesome)
{
$wa->useStyle('fontawesome.css');
}
// Google font
if ($googleFont !== '')
{
$fontFamily = str_replace(' ', '+', $googleFont);
$this->getPreloadManager()->preconnect('https://fonts.googleapis.com', ['crossorigin' => 'anonymous']);
$this->getPreloadManager()->preconnect('https://fonts.gstatic.com', ['crossorigin' => 'anonymous']);
$this->addHeadLink('https://fonts.googleapis.com/css2?family=' . $fontFamily . '&display=swap', 'stylesheet', 'rel');
$wa->addInlineStyle(':root {
--hiq-font-family-base: "' . $googleFont . '";
}');
}
// Load switcher JS
// This should be loaded even if the themeSwitcher is disabled, so that the system preference will still dictate the theme
$wa->useScript('switch.js');
// Logo file or site title param
$logo = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 508.928 508.928" height="50"><path fill="hsl(210, 100%, 50%)" d="M403.712 201.04H256.288L329.792 0 105.216 307.888H252.64l-73.504 201.04z"/></svg>';
if ($this->params->get('logoFile'))
{
$logo = '<img src="' . Uri::root() . '/' . htmlspecialchars($this->params->get('logoFile'), ENT_QUOTES, 'UTF-8') . '" alt="' . $sitename . '">';
}
elseif ($this->params->get('logoSvg'))
{
$logo = $this->params->get('logoSvg');
}
elseif ($this->params->get('siteTitle'))
{
$logo = '<span title="' . $sitename . '">' . htmlspecialchars($this->params->get('siteTitle'), ENT_COMPAT, 'UTF-8') . '</span>';
}
$hasSidebar = '';
if ($this->countModules('sidebar-left'))
{
$hasSidebar .= ' has-sidebar-left';
}
if ($this->countModules('sidebar-right'))
{
$hasSidebar .= ' has-sidebar-right';
}
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');
$this->setMetaData('theme-color', '#ffffff');
$imageLayout = new FileLayout('lightning.favicon');
$imageLayout->render([
'path' => $faviconPath,
]);
$menu = $this->getBuffer('modules', 'menu', $attribs = ['style' => 'none']);
$search = $this->getBuffer('modules', 'search', $attribs = ['style' => 'none']);
$banner = $this->getBuffer('modules', 'banner', $attribs = ['style' => 'default']);
$topA = $this->getBuffer('modules', 'top-a', $attribs = ['style' => 'default']);
$topB = $this->getBuffer('modules', 'top-b', $attribs = ['style' => 'default']);
$sidebarLeft = $this->getBuffer('modules', 'sidebar-left', $attribs = ['style' => 'default']);
$mainTop = $this->getBuffer('modules', 'main-top', $attribs = ['style' => 'default']);
$message = $this->getBuffer('message');
$breadcrumbs = $this->getBuffer('modules', 'breadcrumbs', $attribs = ['style' => 'none']);
$component = $this->getBuffer('component');
$mainBottom = $this->getBuffer('modules', 'main-bottom', $attribs = ['style' => 'default']);
$sidebarRight = $this->getBuffer('modules', 'sidebar-right', $attribs = ['style' => 'default']);
$bottomA = $this->getBuffer('modules', 'bottom-a', $attribs = ['style' => 'default']);
$bottomB = $this->getBuffer('modules', 'bottom-b', $attribs = ['style' => 'default']);
$footer = $this->getBuffer('modules', 'footer', $attribs = ['style' => 'none']);
$debug = $this->getBuffer('modules', 'debug', $attribs = ['style' => 'none']);
// If we're on the homepage and `hideComponent` is true, set the buffer as an empty string
if ($menuObj->getActive() == $menuObj->getDefault() && $hideComponent)
{
$component = '';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<jdoc:include type="metas" />
<jdoc:include type="styles" />
<jdoc:include type="scripts" />
</head>
<body class="site-grid site <?php echo $pageclass . $hasSidebar; ?>">
<header class="grid-child container-header full-width header <?php echo $this->countModules('banner') ? 'has-banner' : ''; ?>">
<nav class="navbar">
<div class="navbar-brand">
<a href="<?php echo $this->baseurl; ?>/">
<?php echo $logo; ?>
<span class="sr-only"><?php echo Text::_('TPL_LIGHTNING_LOGO_LABEL'); ?></span>
</a>
<?php if ($this->params->get('siteDescription')) : ?>
<div><?php echo htmlspecialchars($this->params->get('siteDescription')); ?></div>
<?php endif; ?>
</div>
<?php if ($this->countModules('menu') || $this->countModules('search')) : ?>
<div class="navbar-menu">
<?php echo $menu; ?>
<?php if ($this->countModules('search')) : ?>
<div class="navbar-end">
<?php echo $search; ?>
</div>
<?php endif; ?>
</div>
<span id="navbar-menu-toggle" class="navbar-menu-toggle"><span></span></span>
<?php endif; ?>
<?php if ($themeSwitcher) : ?>
<div class="color-scheme-switch" id="color-scheme-switch">
<input type="radio" name="color-scheme-switch" value="is-light" class="color-scheme-switch-radio" aria-label="Light color scheme">
<input type="radio" name="color-scheme-switch" value="is-system" class="color-scheme-switch-radio" aria-label="System color scheme">
<input type="radio" name="color-scheme-switch" value="is-dark" class="color-scheme-switch-radio" aria-label="Dark color scheme">
<label class="color-scheme-switch-label" for="color-scheme-switch"></label>
</div>
<?php endif; ?>
</nav>
</header>
<?php if ($this->countModules('banner')) : ?>
<div class="grid-child full-width container-banner">
<?php echo $banner; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('top-a')) : ?>
<div class="grid-child container-top-a">
<?php echo $topA; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('top-b')) : ?>
<div class="grid-child container-top-b">
<?php echo $topB; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('sidebar-left')) : ?>
<div class="grid-child container-sidebar-left">
<?php echo $sidebarLeft; ?>
</div>
<?php endif; ?>
<div class="grid-child container-component">
<?php echo $mainTop; ?>
<?php echo $message; ?>
<?php echo $breadcrumbs; ?>
<?php echo $component; ?>
<?php echo $mainBottom; ?>
</div>
<?php if ($this->countModules('sidebar-right')) : ?>
<div class="grid-child container-sidebar-right">
<?php echo $sidebarRight; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('bottom-a')) : ?>
<div class="grid-child container-bottom-a">
<?php echo $bottomA; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('bottom-b')) : ?>
<div class="grid-child container-bottom-b">
<?php echo $bottomB; ?>
</div>
<?php endif; ?>
<?php if ($this->countModules('footer')) : ?>
<footer class="grid-child container-footer full-width footer">
<div class="container">
<?php echo $footer; ?>
</div>
</footer>
<?php endif; ?>
<?php echo $debug; ?>
</body>
</html>