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: 3a44349a8b16b5f6817ecf5114d5c3703468f146 (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
41
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
{% set development_assets = true %}
<link rel="stylesheet" href="{{ subfolder }}/assets/themes/global.css" type="text/css" id="cssmain" />
<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
}}<!-- prettier-ignore-start -->

		<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>
<!-- prettier-ignore-end -->

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