Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
{{{ output.doctype }}}
18
<html {{{ output.htmlattributes }}} {{#darkmodeon}}class="dark-mode"{{/darkmodeon}}>
19
<head>
20
    <title>{{{ output.page_title }}}</title>
21
    <meta property="og:title" content="{{{ output.page_title }}}" />
22
 
23
    {{#themeauthor}}
24
    <!--
25
 
26
      Theme: Universe Moodle Theme
27
      Author: Marcin Czaja - Rosea Themes (rosea.io)
1441 ariadna 28
      Version: 1.5.12
1 efrain 29
 
1441 ariadna 30
      Copyright © 2023 - 2025
1 efrain 31
 
32
    -->
33
    {{/themeauthor}}
34
 
35
    {{#seometadesc}}
36
    <meta name="description" content="{{{seometadesc}}}">
37
    <meta property="og:description" content="{{{seometadesc}}}" />
38
    {{/seometadesc}}
39
 
40
    <meta name="theme-color" content="{{seothemecolor}}{{^seothemecolor}}#fff{{/seothemecolor}}">
41
 
42
    {{^output.custom_course_favicon }}
43
    <link rel="shortcut icon" href="{{{ output.favicon }}}" />
44
    {{/output.custom_course_favicon }}
45
    {{#output.custom_course_favicon }}
46
    <link rel="shortcut icon" href="{{{ output.custom_course_favicon }}}" />
47
    {{/output.custom_course_favicon }}
48
 
49
    {{#seoappletouchicon}}<link rel="apple-touch-icon" href="{{seoappletouchicon}}">{{/seoappletouchicon}}
50
    {{#favicon16}}<link rel="icon" type"image/png" sizes="16x16" href="{{favicon16}}">{{/favicon16}}
51
    {{#favicon32}}<link rel="icon" type"image/png" sizes="32x32" href="{{favicon32}}">{{/favicon32}}
52
    {{#faviconsafaritab}}<link rel="mask-icon" color="{{faviconsafaritabcolor}}" href="{{faviconsafaritab}}">{{/faviconsafaritab}}
53
 
54
    {{{ output.standard_head_html }}}
55
    {{{ output.additional_head_html }}}
56
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
57
 
58
    {{^fontfiles}}
59
    {{#googlefonturl}}
60
    <link rel="preconnect" href="https://fonts.googleapis.com">
61
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
62
    <link href="{{{googlefonturl}}}" rel="stylesheet">
63
    {{/googlefonturl}}
64
    {{/fontfiles}}
65
 
66
    {{#isfrontpage}}
67
    <!-- Swiper JS -->
68
    <script src="{{siteurl}}/theme/universe/addons/swiper/swiper-bundle.min.js"></script>
69
    <script src="{{siteurl}}/theme/universe/addons/tinyslider/tiny-slider.js"></script>
70
    <link rel="stylesheet" href="{{siteurl}}/theme/universe/addons/tinyslider/tiny-slider.css">
71
    {{/isfrontpage}}
72
 
1441 ariadna 73
    <script src="{{siteurl}}/theme/universe/addons/filtering/index.ui.js"></script>
74
 
1 efrain 75
</head>