-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader-scripts.php
More file actions
60 lines (46 loc) · 2.2 KB
/
Copy pathheader-scripts.php
File metadata and controls
60 lines (46 loc) · 2.2 KB
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
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" <?php print lang_attributes(); ?>>
<head>
<title>{content_meta_title}</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property="og:title" content="{content_meta_title}"/>
<meta name="keywords" content="{content_meta_keywords}"/>
<meta name="description" content="{content_meta_description}"/>
<meta property="og:type" content="{og_type}"/>
<meta property="og:url" content="{content_url}"/>
<meta property="og:image" content="{content_image}"/>
<meta property="og:description" content="{og_description}"/>
<meta property="og:site_name" content="{og_site_name}"/>
<script>
mw.require('icon_selector.js');
mw.lib.require('bootstrap5js');
mw.lib.require("collapse_nav");
mw.require('<?php print template_url(); ?>assets/plugins/mw-ui/assets/ui/plugins/js/plugins.js');
mw.lib.require('bxslider');
mw.lib.require('slick');
mw.iconLoader()
.addIconSet('iconsMindLine')
.addIconSet('iconsMindSolid')
.addIconSet('fontAwesome')
.addIconSet('materialDesignIcons')
</script>
<script>
addEventListener('load', function () {
$('.js-collapse-inner-page-menu').collapseNav({
responsive: 1,
more_text: 'More Button',
mobile_break: 800,
});
})
</script>
<link href="<?php print template_url(); ?>assets/fonts/jost-font/font.css" rel="stylesheet"/>
<link href="<?php print template_url(); ?>assets/css/main.css" rel="stylesheet"/>
<link href="<?php print template_url(); ?>assets/templates_features/css/scss/styles-for-template.css" rel="stylesheet"/>
<link href="<?php print template_url(); ?>assets/design-styles/design-styles.css" rel="stylesheet"/>
<script src="<?php print template_url(); ?>assets/templates_features/js/js-for-template.js"></script>
<?php print get_template_stylesheet(); ?>
<?php include('template_settings.php'); ?>
</head>
<body class="<?php print helper_body_classes(); ?>">