File: /var/www/selfanalyse/wp-content/themes/psychometrics/footer.php
<!-- FOOTER SECTION -->
<footer class="footer-section">
<div class="footer-section-bg"></div>
<div class="top-footer-section">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<h4 class="footer-head">Important Links</h4>
<ul class="important-link-ul">
<li><a href="/">Home</a></li>
<li><a href="/about-us/">About Us</a></li>
<li><a href="/psychometric-test/">Psychometric Test</a></li>
<li><a href="/counselors/">Counselors</a></li>
<li><a href="/faqs/">FAQ's</a></li>
<li><a href="/plans/">Plans</a></li>
</ul>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<h4 class="footer-head">Contact Me</h4>
<ul class="contact-me-ul">
<!-- <li><span>Email: </span> <a href="mailto:info@selfanalyse.com">info@selfanalyse.com</a> </li>
<li><span>Address: </span> Anupam Plaza, 56/1, S/F, S-5, Near IIT Flyover, Kalu Sarai, New Delhi, Delhi 110016</li> -->
<li class="footer-tags-list" style="display: none;">
<a style="position: relative;top: -12px;" href="">Psychometric Test</a>
<a style="position: relative;top: -12px;" href="">Aptitude Test</a>
<a href="">Personality Test</a>
<a href="">Career Counselling</a>
<a style="position: relative;top: 12px;" href="">Personality Assessment</a>
</li>
</ul>
<div class="social-link">
<a href="https://twitter.com/self_analyse" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://facebook.com/selfanalyse" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/self_analyse/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UC_Y9Si7E4Xjt9hjYhGuo_gQ/videos" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<h4 class="footer-head">Find on Facebook</h4>
<div id="fb-root"></div>
<script async defer src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v6.0&appId=340639902750862&autoLogAppEvents=1"></script>
<div class="fb-page" data-href="https://www.facebook.com/selfanalyse" data-tabs="timeline" data-width="" data-height="120" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true">
<blockquote crossorigin="anonymous" cite="https://www.facebook.com/selfanalyse" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/selfanalyse">Self Analyse</a></blockquote>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="tags">
<a href="/psychometric-aptitude-test/" target="_blank">Aptitude Test</a>
<a href="/psychometric-personality-test/" target="_blank">Personality Test</a>
<a href="/psychometric-interest-test/" target="_blank">Interest Test</a>
<a href="/psychometric-test-for-high-school-students/" target="_blank">High school students</a>
<a href="/psychometric-test-for-college-students/" target="_blank">College Students</a>
<a href="/psychometric-test/" target="_blank">Psychometric Tests</a>
<a href="/career-guidance/" target="_blank">Career Guidance</a>
<a href="/personality-assessment/" target="_blank">Personality Assessment</a>
<a href="/one-to-one-counselling/" target="_blank">Career Counselling</a>
<a href="/personality-assessment/" target="_blank">Psychometric Assessment</a>
<a href="/tests-of-character-virtue/" target="_blank">Tests of Character Virtue</a>
<a href="/life-skills-coaching/" target="_blank">Life Skills Training Program</a>
<a href="/life-skills-coaching/" target="_blank">Life Skills Coaching</a>
<a href="/psychometric-test-for-high-school-students/" target="_blank">Career After 10th</a>
<a href="/psychometric-test-for-college-students/" target="_blank">Career After 12th</a>
</div>
</div>
</div>
</div>
</div>
<div class="bottom-footer-section">
<div class="container">
<div class="row">
<div class="bottom-footer">
<div class="col-md-6 col-sm-6 col-xs-12">
<p>All rights reserved © <?php echo date('Y'); ?></p>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<ul class="bottom-footer-ul">
<li><a href="/terms-and-conditions/">Terms & Conditions</a></li>
<li><a href="/privacy-and-policy/">Privacy & Policy</a></li>
<li><a href="/disclaimer/">Disclaimer</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- END FOOTER SECTION -->
<?php wp_footer(); ?>
<script src="<?php echo ROOT_LINK; ?>wp-content/themes/psychometrics/bootstrap/js/toastr.min.js"></script>
</body>
<!-- BANNER SCRIPT -->
<script>
jQuery.noConflict();
jQuery('.slider').each(function() {
var $this = $(this);
var $group = $this.find('.slide_group');
var $slides = $this.find('.slide');
var bulletArray = [];
var currentIndex = 0;
var timeout;
function move(newIndex) {
var animateLeft, slideLeft;
//advance();
if ($group.is(':animated') || currentIndex === newIndex) {
return;
}
bulletArray[currentIndex].removeClass('active');
bulletArray[newIndex].addClass('active');
if (newIndex > currentIndex) {
slideLeft = '100%';
animateLeft = '-100%';
} else {
slideLeft = '-100%';
animateLeft = '100%';
}
$slides.eq(newIndex).css({
display: 'block',
left: slideLeft
});
$group.animate({
left: animateLeft
}, function() {
$slides.eq(currentIndex).css({
display: 'none'
});
$slides.eq(newIndex).css({
left: 0
});
$group.css({
left: 0
});
currentIndex = newIndex;
});
}
// function advance() {
// clearTimeout(timeout);
// timeout = setTimeout(function() {
// if (currentIndex < ($slides.length - 1)) {
// move(currentIndex + 1);
// } else {
// move(0);
// }
// }, 10000);
// }
$('.next_btn').on('click', function() {
if (currentIndex < ($slides.length - 1)) {
move(currentIndex + 1);
} else {
move(0);
}
});
$('.previous_btn').on('click', function() {
if (currentIndex !== 0) {
move(currentIndex - 1);
} else {
move(3);
}
});
$.each($slides, function(index) {
var $button = $('<a class="slide_btn">•</a>');
if (index === currentIndex) {
$button.addClass('active');
}
$button.on('click', function() {
move(index);
}).appendTo('.slide_buttons');
bulletArray.push($button);
});
//advance();
});
</script>
<!-- END BANNER SCRIPT -->
<!-- ACCORDIAN SCRIPT -->
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("accordion-active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
<!-- END ACCORDIAN SCRIPT -->
<!-- ANIMATED SCRIPT -->
<script>
// Trigger CSS animations on scroll.
// Detailed explanation can be found at http://www.bram.us/2013/11/20/scroll-animations/
// Looking for a version that also reverses the animation when
// elements scroll below the fold again?
// --> Check https://codepen.io/bramus/pen/vKpjNP
jQuery(function($) {
// Function which adds the 'animated' class to any '.animatable' in view
var doAnimations = function() {
// Calc current offset and get all animatables
var offset = $(window).scrollTop() + $(window).height(),
$animatables = $('.animatable');
// Unbind scroll handler if we have no animatables
if ($animatables.length == 0) {
$(window).off('scroll', doAnimations);
}
// Check all animatables and animate them if necessary
$animatables.each(function(i) {
var $animatable = $(this);
if (($animatable.offset().top + $animatable.height() - 20) < offset) {
$animatable.removeClass('animatable').addClass('animated');
}
});
};
// Hook doAnimations on scroll, and trigger a scroll
$(window).on('scroll', doAnimations);
$(window).trigger('scroll');
});
</script>
<!-- END ANIMATED SCRIPT -->
</html>