| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <div class="footer-wrapper">
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <footer class="footer">
- <p>© <a href="http://www.heidelbergcement.de/de">HeidelbergCement AG</a> und <a href="http://www.hd.akbw.de/">Architektenkammer Baden-Württemberg, Kammergruppe Heidelberg</a></p>
- </footer>
- </div>
- </div>
- </div>
- </div>
- <?php wp_footer(); ?>
- <script type='text/javascript' src='https://ams.mmnx.de/wp-content/themes/ams_2016/dist/holder.js'></script>
- <!-- jQuery first, then Bootstrap JS. -->
- <script src="http://holderjs.com/holder.js"></script>
- <script type="text/javascript">
- jQuery( document ).ready(function($) {
- $('#nav').Stickyfill(); // NAV
- /** TdA Carousel **/
- $('.owl-carousel').slick({
- dots: false,
- infinite: true,
- variableWidth: true,
- autoplay: true,
- lazyLoad: 'progressive',
- swipeToSlide: true,
- waitForAnimate: false,
- nextArrow: '<span class="icon-next" aria-hidden="true"><i class="fa fa-chevron-right" aria-hidden="true"></i></span>',
- prevArrow: '<span class="icon-prev" aria-hidden="true"><i class="fa fa-chevron-left" aria-hidden="true"></i></span>',
- });
- $(document).on('click', 'a.scroll-link[href^="#"]', function(e){
- e.preventDefault();
- $('html, body').animate({
- scrollTop: $( $.attr(this, 'href') ).offset().top
- }, 500);
- });
- $(document).on('click', 'a.nav-link.scroll-link[data-target*="#"]', function(e){
- e.preventDefault();
- $('html, body').animate({
- scrollTop: $( $.attr(this, 'data-target') ).offset().top
- }, 500);
- });
- /*$(document).on('click', 'a.nav-link.scroll-link[href*="\#"]', function(e) {
- e.preventDefault();
- var target = $(this).attr('href'), $target = $(target); {
- $('html, body').stop().animate({
- 'scrollTop' : $target.offset().top - 50
- }, 900, 'swing', function() {
- window.location.hash = target;
- });
- }
- });*/
- });
- </script>
- </body>
- </html>
|