/home/csiway/public_html/includes/header.php


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
<?php

// Reporta erros simples
error_reporting(E_ERROR E_WARNING E_PARSE);
ini_set('display_errors''1');


include(
'db_acesso.php');
include(
'funcoes.php');

?>
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <link rel="shortcut icon" type="image/png" href="img/favicon.png" />
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">

        <!-- Cor do Tema no Navegador Mobile -->
        <meta name="theme-color" content="">
        <meta name="apple-mobile-web-app-status-bar-style" content="">
        <meta name="msapplication-navbutton-color" content="">

        <title>CSI  Solução & Tecnologia <? echo($title == "" "" " | " $title); ?></title>

        <!-- Estilos CSS do Site -->
        <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
        <link rel="stylesheet" type="text/css" href="css/style.css" />
        <link rel="stylesheet" type="text/css" href="css/animate.css" />
        <link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
        
        <!-- Fontes do Site -->
        <link href="https://fonts.googleapis.com/css?family=Catamaran:400,700,800,900|Montserrat:400,500,700,800,900" rel="stylesheet">

        <!-- Scripts de JavaScript do Site -->
        <script src="js/jquery-2.1.0.js"></script>
        <script src="js/jquery-migrate-1.4.1.js"></script>
        <script src="js/bootstrap.js"></script>
        <script src="js/mask/src/jquery.mask.js"></script>
        <script src="js/jquery.matchHeight.js"></script>
        <script src="js/scripts.js"></script>
        <script src="js/wow.min.js"></script>
        <script src="js/jquery.fancybox.min.js"></script>
        <script src="js/jquery.mapit.js"></script>
        <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAiq4BzCmos3k-TuE-SHU6ZZ94EtRYL3XY"></script>    
        

        <!-- Global site tag (gtag.js) - Google Analytics -->
        <script async src="https://www.googletagmanager.com/gtag/js?id=UA-144549184-1"></script>
        <script>
          window.dataLayer = window.dataLayer || [];
          function gtag(){dataLayer.push(arguments);}
          gtag('js', new Date());

          gtag('config', 'UA-144549184-1');
        </script>
        <script src='https://www.google.com/recaptcha/api.js'></script>
        
    </head>
    <body>

        <nav class="navbar navbar-default navbar-fixed-top">
            <div class="container">
                <div class="navbar-header">
                    <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                    <a class="navbar-brand" href="index.php">
                        <img alt="Logo" src="img/logo.png">
                    </a>
                </div>
                <div class="collapse navbar-collapse" id="menu">
                    <ul class="nav navbar-nav navbar-right">
                        <li><a href="sobre.php" <? echo($page == "" "class=\"active\"" ""); ?>>Sobre</a></li>
                        <li><a href="ecops.php" <? echo($page == "" "class=\"active\"" ""); ?>>e-COPS</a></li>
                        <li><a href="clientes.php" <? echo($page == "" "class=\"active\"" ""); ?>>Clientes</a></li>
                        <li><a href="servicos.php" <? echo($page == "" "class=\"active\"" ""); ?>>Serviços</a></li>
                        <li><a href="solucoes.php" <? echo($page == "" "class=\"active\"" ""); ?>>Soluções</a></li>
                        <li><a href="imprensa.php" <? echo($page == "" "class=\"active\"" ""); ?>>Imprensa</a></li>
                        <li><a href="parceiros.php" <? echo($page == "" "class=\"active\"" ""); ?>>Parceiros</a></li>
                        <li><a href="blog.php" <? echo($page == "" "class=\"active\"" ""); ?>>Blog</a></li>
                        <li><a href="cases.php" <? echo($page == "cases" "class=\"active\"" ""); ?>>Cases</a></li>
                        <li><a href="contato.php" <? echo($page == "" "class=\"active\"" ""); ?>>Contato</a></li>
                        <li><a class="iconsnavbar" href="https://pt.linkedin.com/company/csiway" target="_blank"><img src="img/linkedin-brands.svg" class="svg"></a>
                        <a class="iconsnavbar" href="https://www.instagram.com/csiway/" target="_blank"><img src="img/instagram-brands.svg" class="svg" ></a>
                        <a class="iconsnavbar" href="https://www.facebook.com/csiway" target="_blank"><img src="img/facebook-brands.svg" class="svg"></a></li>
                    </ul>
                </div>
            </div>
        </nav>