146 lines
6.0 KiB
PHP
146 lines
6.0 KiB
PHP
<!-- FOOTER -->
|
|
<section>
|
|
<footer class="py-8 py-md-11 bg-gray-200 shadow-light-lg bg-cover overlay overlay-dark overlay-5">
|
|
<div style="margin: 0px 60px;" class="fluid-container">
|
|
<div class="row">
|
|
<div class="col-12 col-md-12 col-lg-3">
|
|
|
|
<!-- Brand -->
|
|
<img style="height: 70px;" src="/assets/img/iimtt.png" alt="iimtt_logo" class="footer-brand img-fluid mb-2">
|
|
|
|
<!-- Text -->
|
|
<p class="text-gray-700 mb-2">
|
|
A better way to build.
|
|
</p>
|
|
|
|
<!-- Social -->
|
|
<ul class=" list-social mb-6 mb-md-0">
|
|
<li class="list-inline-item list-social-item mr-3">
|
|
<a href="https://www.instagram.com/iimtt.corporate/" class="text-decoration-none" target="_blank">
|
|
<img src="/assets/img/icons/social/instagram.svg" class="list-social-icon" alt="logo">
|
|
</a>
|
|
</li>
|
|
<li class="list-inline-item list-social-item mr-3">
|
|
<a href="https://www.facebook.com/IIMTT/" class="text-decoration-none" target="_blank">
|
|
<img src="/assets/img/icons/social/facebook.svg" class="list-social-icon" alt="logo">
|
|
</a>
|
|
</li>
|
|
<li class="list-inline-item list-social-item mr-3">
|
|
<a href="https://twitter.com/iimtt_corporate" class="text-decoration-none" target="_blank">
|
|
<img src="/assets/img/icons/social/twitter.svg" class="list-social-icon" alt="logo">
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
<div class="col-12 col-md-12 col-lg-3">
|
|
|
|
<!-- Heading -->
|
|
<h5 class="font-weight-bold text-uppercase text-gray-700">
|
|
Address
|
|
</h5>
|
|
|
|
<!-- List -->
|
|
<ul class="list-unstyled text-muted mb-6 mb-md-8 mb-lg-0">
|
|
<li class="mb-3">
|
|
|
|
Kemp House 160 City Road, London, Ec1v2nx<br>
|
|
<img style="height: 20px;" src="/assets/img/phone.png" alt="phone"> +442038077020<br>
|
|
<img style="height: 20px;" src="/assets/img/message.jpeg" alt="message"> enquiry@iimtt.org
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
<div class="col-12 col-md-12 col-lg-3">
|
|
|
|
<!-- Heading -->
|
|
<h5 class="font-weight-bold text-uppercase text-gray-700">
|
|
Our partners
|
|
</h5>
|
|
|
|
<!-- List -->
|
|
<ul class="list-unstyled text-muted mb-6 mb-md-8 mb-lg-0">
|
|
<li class="mb-3">
|
|
<a href="#!" class="text-reset">
|
|
Atheneum Global Teacher Training College
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-12 col-lg-3">
|
|
|
|
<!-- Heading -->
|
|
<h5 class="font-weight-bold text-uppercase text-gray-700">
|
|
Our center
|
|
</h5>
|
|
|
|
<!-- List -->
|
|
<ul class="list-unstyled text-muted mb-0">
|
|
<li class="mb-3">
|
|
<a href="montessori-teacher-training-program-kolkata" class="text-reset">
|
|
Regional Center Kolkata
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div> <!-- / .row -->
|
|
|
|
</div> <!-- / .container -->
|
|
|
|
</footer>
|
|
<div style="background-color: #1b2a4e;margin: 0;padding: 0;" class="">
|
|
<p style="color: #f7a325;margin: 0;text-align: center;padding-bottom: 10px;"> © 2020 IIMTT. All Rights Reserved.</p>
|
|
</div>
|
|
</section>
|
|
<!-- JAVASCRIPT -->
|
|
<!-- Map JS -->
|
|
<script src='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.js'></script>
|
|
|
|
<!-- Vendor JS -->
|
|
<script src="/assets/js/vendor.bundle.js"></script>
|
|
|
|
<!-- Theme JS -->
|
|
<script src="/assets/js/theme.bundle.js"></script>
|
|
|
|
<!-- Code injected by live-server -->
|
|
<script type="text/javascript">
|
|
// <![CDATA[ <-- For SVG support
|
|
if ('WebSocket' in window) {
|
|
(function () {
|
|
function refreshCSS() {
|
|
var sheets = [].slice.call(document.getElementsByTagName("link"));
|
|
var head = document.getElementsByTagName("head")[0];
|
|
for (var i = 0; i < sheets.length; ++i) {
|
|
var elem = sheets[i];
|
|
var parent = elem.parentElement || head;
|
|
parent.removeChild(elem);
|
|
var rel = elem.rel;
|
|
if (elem.href && typeof rel != "string" || rel.length == 0 || rel.toLowerCase() == "stylesheet") {
|
|
var url = elem.href.replace(/(&|\?)_cacheOverride=\d+/, '');
|
|
elem.href = url + (url.indexOf('?') >= 0 ? '&' : '?') + '_cacheOverride=' + (new Date().valueOf());
|
|
}
|
|
parent.appendChild(elem);
|
|
}
|
|
}
|
|
var protocol = window.location.protocol === 'http:' ? 'ws://' : 'wss://';
|
|
var address = protocol + window.location.host + window.location.pathname + '/ws';
|
|
var socket = new WebSocket(address);
|
|
socket.onmessage = function (msg) {
|
|
if (msg.data == 'reload') window.location.reload();
|
|
else if (msg.data == 'refreshcss') refreshCSS();
|
|
};
|
|
if (sessionStorage && !sessionStorage.getItem('IsThisFirstTime_Log_From_LiveServer')) {
|
|
console.log('Live reload enabled.');
|
|
sessionStorage.setItem('IsThisFirstTime_Log_From_LiveServer', true);
|
|
}
|
|
})();
|
|
}
|
|
else {
|
|
console.error('Upgrade your browser. This Browser is NOT supported WebSocket for Live-Reloading.');
|
|
}
|
|
// ]]>
|
|
</script>
|
|
|
|
</body>
|
|
</html> |