1 |
efrain |
1 |
{{!
|
|
|
2 |
This file is part of Moodle - http://moodle.org/
|
|
|
3 |
|
|
|
4 |
Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
it under the terms of the GNU General Public License as published by
|
|
|
6 |
the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
(at your option) any later version.
|
|
|
8 |
|
|
|
9 |
Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
GNU General Public License for more details.
|
|
|
13 |
|
|
|
14 |
You should have received a copy of the GNU General Public License
|
|
|
15 |
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
}}
|
|
|
17 |
{{!
|
|
|
18 |
Page header.
|
|
|
19 |
}}
|
|
|
20 |
{{{ output.doctype }}}
|
|
|
21 |
<html {{{ output.htmlattributes }}} {{#darkmodeon}}class="dark-mode"{{/darkmodeon}}>
|
|
|
22 |
<head>
|
|
|
23 |
<title>{{{ output.page_title }}}</title>
|
|
|
24 |
<meta property="og:title" content="{{{ output.page_title }}}" />
|
|
|
25 |
|
|
|
26 |
{{#themeauthor}}
|
|
|
27 |
<!--
|
|
|
28 |
|
|
|
29 |
Theme: Universe Moodle Theme
|
|
|
30 |
Author: Marcin Czaja - Rosea Themes (rosea.io)
|
|
|
31 |
Version: 1.3.2
|
|
|
32 |
|
|
|
33 |
Copyright © 2023 - 2024
|
|
|
34 |
|
|
|
35 |
-->
|
|
|
36 |
{{/themeauthor}}
|
|
|
37 |
|
|
|
38 |
{{#seometadesc}}
|
|
|
39 |
<meta name="description" content="{{{seometadesc}}}">
|
|
|
40 |
<meta property="og:description" content="{{{seometadesc}}}" />
|
|
|
41 |
{{/seometadesc}}
|
|
|
42 |
|
|
|
43 |
<meta name="theme-color" content="{{seothemecolor}}{{^seothemecolor}}#fff{{/seothemecolor}}">
|
|
|
44 |
|
|
|
45 |
{{^output.custom_course_favicon }}
|
|
|
46 |
<link rel="shortcut icon" href="{{{ output.favicon }}}" />
|
|
|
47 |
{{/output.custom_course_favicon }}
|
|
|
48 |
{{#output.custom_course_favicon }}
|
|
|
49 |
<link rel="shortcut icon" href="{{{ output.custom_course_favicon }}}" />
|
|
|
50 |
{{/output.custom_course_favicon }}
|
|
|
51 |
|
|
|
52 |
{{#seoappletouchicon}}<link rel="apple-touch-icon" href="{{seoappletouchicon}}">{{/seoappletouchicon}}
|
|
|
53 |
{{#favicon16}}<link rel="icon" type"image/png" sizes="16x16" href="{{favicon16}}">{{/favicon16}}
|
|
|
54 |
{{#favicon32}}<link rel="icon" type"image/png" sizes="32x32" href="{{favicon32}}">{{/favicon32}}
|
|
|
55 |
{{#faviconsafaritab}}<link rel="mask-icon" color="{{faviconsafaritabcolor}}" href="{{faviconsafaritab}}">{{/faviconsafaritab}}
|
|
|
56 |
|
|
|
57 |
{{{ output.standard_head_html }}}
|
|
|
58 |
{{{ output.additional_head_html }}}
|
|
|
59 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
60 |
|
|
|
61 |
{{^fontfiles}}
|
|
|
62 |
{{#googlefonturl}}
|
|
|
63 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
64 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
65 |
<link href="{{{googlefonturl}}}" rel="stylesheet">
|
|
|
66 |
{{/googlefonturl}}
|
|
|
67 |
{{/fontfiles}}
|
|
|
68 |
|
|
|
69 |
{{#isfrontpage}}
|
|
|
70 |
<!-- Swiper JS -->
|
|
|
71 |
<script src="{{siteurl}}/theme/universe/addons/swiper/swiper-bundle.min.js"></script>
|
|
|
72 |
<script src="{{siteurl}}/theme/universe/addons/tinyslider/tiny-slider.js"></script>
|
|
|
73 |
<link rel="stylesheet" href="{{siteurl}}/theme/universe/addons/tinyslider/tiny-slider.css">
|
|
|
74 |
{{/isfrontpage}}
|
|
|
75 |
|
|
|
76 |
</head>
|