-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.php
102 lines (83 loc) · 3.34 KB
/
app.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
95
96
97
98
99
100
101
102
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>App Mobile</title>
<meta name="author" content="Smartia" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="shortcut icon" href="static/v3/images/favico.ico">
<link rel="apple-touch-icon-precomposed" href="static/v3/images/layout/icon-ios.png">
<link rel="stylesheet" href="static/v3/styles/style.css" media="all" />
<!--[if IE 8]>
<script type="text/javascript" src="static/v3/scripts/ie8.min.js"></script>
<![endif]-->
<!-- Typekit -->
<script type="text/javascript" src="//use.typekit.net/sxe8qvx.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script>
var WAIT_FONTS_INTERVAL = 10;
var WAIT_FONTS_TIMEOUT = 10000;
var WAIT_TIME = 0;
function waitFonts() {
WAIT_TIME += WAIT_FONTS_INTERVAL;
var html = document.getElementsByTagName('html')[0];
if (html.className.indexOf('wf-active') > -1 || WAIT_TIME > WAIT_FONTS_TIMEOUT) {
html.className = html.className.replace(/\bwaitfonts\b/,'');
} else {
window.setTimeout(waitFonts, WAIT_FONTS_INTERVAL);
}
}
waitFonts();
</script>
</head>
<body>
<?php include('includes/header.php'); ?>
<div class="page-title">
<div class="container single-page">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">App Mobile</li>
</ol>
<h1>App Mobile</h1>
<a href="#" class="big-simule-button">Simule agora seu seguro</a>
</div>
</div>
<div class="container">
<span class="double-border"></span>
<div class="page-sharer">
<div class="google">
<g:plusone size="medium" annotation="none"></g:plusone>
</div>
<div class="facebook">
<div class="fb-wrapper">
<div class="fb-like" data-href="http://developers.facebook.com/docs/reference/plugins/like" data-width="30" data-show-faces="false" data-send="false" data-action="like" data-layout="button_count" data-font="tahoma"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<section class="single-page">
<span class="image-app">
<span class="left"></span>
<span class="right"></span>
<span class="text">
<p>Tenha os <strong>dados da sua apólice</strong> na palma da mão!</p>
<p>Assistência direta com a sua <strong>seguradora e seus serviços</strong>.</p>
<p>Contato direto e fácil com a nossa <strong>Central de Atendimento</strong>.</p>
</span>
<a href="#" class="avaliable">Disponível na AppStore</a>
</span>
<div class="text-content">
<p>Conheça o novo aplicativo ASSISTÊNCIA SMARTIA. Com ele você poderá e cadastrar e acessar os dados e informações de suas apólices de seguro, ter acesso aos principais telefones das seguradoras, abrir chamados de assistencia e entrar em contato com a central de atendimento da SMARTIA SEGUROS ONLINE. Tudo isso de forma simples direto no seu Iphone.</p>
</div>
</section>
</div>
</div>
</div>
<?php include('includes/footer.php'); ?>
<?php include('includes/modal.php'); ?>
<?php include('includes/scripts.php'); ?>
</body>
</html>