indexnomenu.php
3.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
define ( "ONDEI3GEO", ".." );
include (dirname ( __FILE__ ) . "/../ms_configura.php");
if (! empty ( $_GET ["customDir"] )) {
$customDir = strip_tags ( $_GET ["customDir"] );
} else if (empty ( $customDir )) {
$customDir = "interface";
}
//error_reporting ( 0 );
include "../init/head.php";
?>
<style>
.btn-qrcode {
background-color: #fff;
color: #ddd;
margin: 5px;
width: 13px;
position: absolute;
top: 12px;
left: 28px;
text-align: center;
border-radius: 20%;
}
.list-group .list-group-separator::before {
width: 100%;
}
.panel-heading [data-toggle="collapse"]:after {
font-family: 'FontAwesome';
content: "\f054";
float: right;
margin-right: 5px;
color: #fffff;
font-size: 12px;
line-height: 16px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.panel-heading [data-toggle="collapse"].collapsed:after {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.thumbnail.hidden-xs {
float: left;
height: 78px;
width: 170px
}
.thumbnail.hidden-xs>a>img {
height: 67px;
width: 160px;
}
.thumbnail.visible-xs {
float: left;
height: 43px;
width: 85px
}
.thumbnail.visible-xs>a>img {
height: 33px;
width: 80px;
}
</style>
<body style="padding-top: 55px; position: relative;" >
<div class="navbar-fixed-top alert alert-success text-center" style="padding: 0px;"></div>
<div class="container">
<div class="row center-block">
<div class="col-md-12">
<div class="well hidden escondido" >
<blockquote id="titulo"></blockquote>
</div>
</div>
</div>
<div class="row center-block">
<div class="col-md-12">
<div class="well" id="corpo">
<i class="fa fa-spinner fa-pulse fa-3x fa-fw"></i> <span class="sr-only">Loading...</span>
</div>
</div>
</div>
</div>
<div id="modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body"></div>
</div>
</div>
</div>
<?php
include("templates/templatelinks.php");
include("templates/templatelista.php");
?>
<script src='../pacotes/cpaint/cpaint2_compacto.inc.js'></script>
<script src='../js/compactados/dicionario_compacto.js'></script>
<script src='../js/compactados/util_compacto.js'></script>
<script src='../js/compactados/idioma_compacto.js'></script>
<script src='../js/compactados/login_compacto.js'></script>
<script src='../js/compactados/php_compacto.js'></script>
<script src='../js/compactados/mustache.js'></script>
<script src='dicionario.js'></script>
<script src='index.js'></script>
<script>
$(document).ready(function(){
i3GEO.configura = {"locaplic" : window.location.href.split("/mapas")[0],"sid": ""};
//traducoes de alguns elementos individualmente
$(".active").html(
$trad("mapas",g_traducao_mapas)
);
$("#titulo").html(
$trad("txtDesc",g_traducao_mapas)
);
mostraBotoesBT();
$('.escondido').removeClass('hidden');
$.material.init();
});
</script>
</body>
</html>