initial commit

This commit is contained in:
2019-06-09 16:44:48 +02:00
commit 3f2c379529
122 changed files with 57403 additions and 0 deletions

61
footer.php Executable file
View 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">
&#169; 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>