-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
83 lines (67 loc) · 3.2 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<footer>
<div class="page-wrap footer-content">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer") ) : ?>
<?php endif; ?>
<div class="disclaimer">
<p>
<a href="https://twitter.com/#!/DGanoff">Demetri Ganoff</a> – Web Designer & Front-end Developer in Winston-Salem, NC.
</p>
<p>
This site was created with <a href="http://css3please.com/">CSS3</a>, <a href="http://jquery.com/" target="_blank">jQuery</a> and <a href="http://www.html5rocks.com/en/">HTML5</a> on the <a href="http://wordpress.org/">WordPress</a> platform. <br> © <a href="http://www.demetridesign.com">DemetriDesign.com</a> 2013
</p>
</div>
</div><!-- .footer-content -->
</footer>
<!-- scripts: -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- Flex Slider: -->
<script src="<?php bloginfo('template_url'); ?>/scripts/jquery.flexslider-min.js"></script>
<!-- Hook up the FlexSlider -->
<script type="text/javascript">
$(document).ready(function () {
$('.flexslider').flexslider({
animation: "slide",
controlsContainer: ".flex-container",
animationDuration: 600,
before: function(slider) {
//animations:
$(".screens-imgs").fitText(1, {maxFontSize: '52px'});
$(".connect-imgs").fitText(1, {maxFontSize: '46px'});
$(".engage-imgs").fitText(1, {maxFontSize: '46px'});
$(".anim h1").fitText(0.5, {maxFontSize: '52px'});
$(".anim h2").fitText(1.5, {minFontSize: '14px', maxFontSize: '24px'});
$(".anim p").fitText(1, {minFontSize: '12px', maxFontSize: '18px'});
}
});
});
</script>
<!-- Fittext setup: -->
<script src="<?php bloginfo('template_url'); ?>/scripts/jquery.fittext.js"></script>
<script>
$(document).ready(function () {
//animations:
$(".screens-imgs").fitText(1, {maxFontSize: '52px'});
$(".connect-imgs").fitText(1, {maxFontSize: '46px'});
$(".engage-imgs").fitText(1, {maxFontSize: '46px'});
$(".anim h1").fitText(0.5, {maxFontSize: '52px'});
$(".anim h2").fitText(1.5, {minFontSize: '14px', maxFontSize: '24px'});
$(".anim p").fitText(1, {minFontSize: '12px', maxFontSize: '18px'});
// $("#main article hgroup h1").fitText(1.5, {minFontSize: '22px', maxFontSize: '36px'});
// $("#main article hgroup h2").fitText(2.5, {minFontSize: '14px', maxFontSize: '16px'});
// $("#sidebar article p").fitText(1.25, {maxFontSize: '16px'});
});
</script>
<script src="<?php bloginfo('template_url'); ?>/scripts/app.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28553110-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<?php wp_footer(); ?>
</body>
</html>