-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
93 lines (72 loc) · 3.9 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es" ng-app="conecta">
<head>
<meta charset="UTF-8">
<title>Conecta | Soluciones Tecnológicas</title>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Conecta es una empresa mexicana con el objetivo de crear los mejores productos Fintech para Instituciones Financieras.">
<meta name="google-site-verification" content="fudW4z1N9h1Ep1wmMPZ2w_WNYlV5feBq3G1UdAV0BmM">
<meta name="robots" content="follow,all">
<meta name="googlebot" content="index, follow">
<!-- Custom CSS -->
<link rel="icon" type="image/png" href="app/dist/img/conecta-favicon32.png" />
<link rel="stylesheet" href="app/dist/styles/main.css">
<link rel="stylesheet" href="app/resources/animate.css/animate.css">
<script src='https://www.google.com/recaptcha/api.js'></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-82995380-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<menu></menu>
<main ng-view></main>
<footer-page></footer-page>
<!-- Import jQuery -->
<script src="app/resources/jquery/dist/jquery.min.js"></script>
<!-- Scrollorama -->
<!-- <script src="app/resources/SuperScrollorama/js/greensock/TweenMax.min.js"></script>
<script src="app/resources/SuperScrollorama/js/jquery.superscrollorama.js"></script> -->
<!-- ScrollMagic -->
<script type="text/javascript" src="app/resources/scrollmagic/scrollmagic/uncompressed/ScrollMagic.js"></script>
<script type="text/javascript" src="app/resources/scrollmagic/scrollmagic/minified/ScrollMagic.min.js"></script>
<script src="app/resources/SuperScrollorama/js/greensock/TweenMax.min.js"></script>
<script src="app/resources/SuperScrollorama/js/greensock/TimelineMax.min.js"></script>
<script src="app/resources/scrollmagic/scrollmagic/minified/plugins/debug.addIndicators.min.js"></script>
<script src="app/resources/scrollmagic/scrollmagic/minified/plugins/animation.gsap.min.js"></script>
<script src="app/resources/scrollmagic/scrollmagic/minified/plugins/animation.velocity.min.js"></script>
<script src="app/resources/wow/dist/wow.min.js"></script>
<script>
new WOW().init();
</script>
<!-- AngularJS -->
<script src="app/resources/angular/angular.min.js"></script>
<!-- AngularJS Routes -->
<script src="app/resources/angular-route/angular-route.min.js"></script>
<!-- App -->
<script src="app/app.js"></script>
<!-- Components -->
<script src="app/components/menu/menu.js"></script>
<script src="app/components/footer/footer-page.js"></script>
<script src="app/components/form/form-conecta.js"></script>
<script src="app/components/products/slider-products.js"></script>
<!-- View Controllers -->
<script src="app/views/home/home-controller.js"></script>
<script src="app/views/about/about-controller.js"></script>
<script src="app/views/products/products-controller.js"></script>
<script src="app/views/clients/clients-controller.js"></script>
<script src="app/views/partners/partners-controller.js"></script>
<script src="app/views/contact/contact-controller.js"></script>
<script src="app/views/security/security.js"></script>
<script src="app/views/contact/datos/datos-controller.js"></script>
<!-- Routes -->
<script src="app/routes/routes.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="app/resources/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>