35 lines
775 B
PHP
35 lines
775 B
PHP
<?php
|
|
|
|
/**
|
|
* The template for displaying the footer
|
|
*
|
|
* Contains the closing of the `#content` element and all content thereafter.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package studio-up
|
|
*/
|
|
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
|
|
<?php get_template_part('template-parts/layout/footer', 'content'); ?>
|
|
|
|
</div><!-- #page -->
|
|
|
|
<?php wp_footer(); ?>
|
|
<script src="https://cdn.jsdelivr.net/npm/flowbite@3.1.2/dist/flowbite.min.js"></script>
|
|
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
|
|
<script>
|
|
var typed = new Typed('#text-slide', {
|
|
strings: ['ESTRATEGIA', 'BRANDING', 'CREATIVIDAD', 'DISEÑO'],
|
|
typeSpeed: 60,
|
|
backSpeed: 30,
|
|
shuffle: true,
|
|
loop: true,
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|