initial commit
This commit is contained in:
61
footer.php
Executable file
61
footer.php
Executable file
@@ -0,0 +1,61 @@
|
||||
<!-- footer -->
|
||||
<footer class="footer" role="contentinfo">
|
||||
|
||||
|
||||
<div id="footertop">
|
||||
<a href="<?php echo home_url(); ?>">
|
||||
<object data="<?php echo get_template_directory_uri(); ?>/img/IO-logo-full-white.svg" type="image/svg+xml">
|
||||
<img src="<?php echo get_template_directory_uri(); ?>/img/IO-logo-full-white-100.png" />
|
||||
</object>
|
||||
</a>
|
||||
<!-- <a href="<?php echo home_url(); ?>">
|
||||
<?php echo get_bloginfo( 'description' ); ?>
|
||||
</a> -->
|
||||
</div>
|
||||
<div id="footerbottom">
|
||||
<div id="info">
|
||||
<?php
|
||||
$footerpage = get_page_by_path('footer', '', 'page');
|
||||
echo get_post_field('post_content', $footerpage->ID);
|
||||
?>
|
||||
</div>
|
||||
|
||||
<nav class="footer-nav" role="navigation">
|
||||
<p class="social-title">SOCIAL</p>
|
||||
<?php wp_nav_menu( array( 'theme_location' => 'footer-social-menu' ) ); ?>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
<div class="footer-copyright-wrapper">
|
||||
<div class="copyright">
|
||||
© Line And Round
|
||||
</div>
|
||||
<div class="created-by">
|
||||
<p>Design: János Hunor Vári</p>
|
||||
<p>Code: Peter Gyetvai</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
<!-- /footer -->
|
||||
|
||||
</div>
|
||||
<!-- /wrapper -->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
<!-- analytics -->
|
||||
<script>
|
||||
(function (f, i, r, e, s, h, l) {
|
||||
i['GoogleAnalyticsObject'] = s; f[s] = f[s] || function () {
|
||||
(f[s].q = f[s].q || []).push(arguments)
|
||||
}, f[s].l = 1 * new Date(); h = i.createElement(r),
|
||||
l = i.getElementsByTagName(r)[0]; h.async = 1; h.src = e; l.parentNode.insertBefore(h, l)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
ga('create', 'UA-XXXXXXXX-XX', 'yourdomain.com');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user