Welcome to mirror list, hosted at ThFree Co, Russian Federation.

common_head.twig « components « templates « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0f22438a13f866f69aa85f8f00ce58ee0daeb4e (plain)
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
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		{% set development_assets=true %}
		{% if development_assets==true %}
		<script src="{{subfolder}}/assets/vendor/less.min.js" type="text/javascript"></script>
		{% else %}
		<link rel="stylesheet" href="{{subfolder}}/assets/themes/global.css" type="text/css" id="cssmain" />
		{% endif %}
		<link rel="stylesheet" href="{{subfolder}}/assets/themes/{{theme}}/global.css" type="text/css" id="csstheme" />
		<link rel="stylesheet" href="{{subfolder}}/assets/vendor/jquery/jquery-ui.min.css" type="text/css" />
		<link rel="shortcut icon" href="{{Favicon}}" type="image/vnd.microsoft.icon" />
		<link rel="icon" href="{{Introduction}}" type="image/png" />

		<script src="{{subfolder}}/assets/vendor/jquery/jquery-3.4.1.min.js"></script>
		<script src="{{subfolder}}/assets/vendor/jquery/jquery-ui.min.js"></script>

		{{script|raw}}
		<script>

				window.stateObj = {
					{%	for key, value in params %}
					'{{key}}': "{{value}}",
					{% endfor %}
 					dir: '{{lang.applangdir}}',
 					in_test: '{{in_test}}',
 					reload: '{{reload}}',
					method: '{{METHOD}}',
					subfolder:'{{subfolder}}',
					path:"{{path}}",
					query_string:"{{query_string}}",
					strconfdropcred:"{{lang.strconfdropcred}}",
				};
			if (stateObj.reload !== "none" && window.jsTree) {
  			window.jsTree.jstree('refresh')
			}
		
		
		</script>


		<title data-headertemplate="{{headertemplate}}" data-subfolder="{{subfolder}}">{{appName}}{{title}}</title>