diff options
Diffstat (limited to 'static/footer.php')
| -rwxr-xr-x | static/footer.php | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/static/footer.php b/static/footer.php index 82e3dd6..06d4295 100755 --- a/static/footer.php +++ b/static/footer.php @@ -1,14 +1,20 @@ </div> - <div class="footer text-right random-bg"> + <div class="footer random-bg"> <div class="container"> - <p class="effect"> Copyright 2014 <a id="copyright-text" href="//www.moehm.org/" target="_blank">Maximilian Möhring</a></p> + <div class="row"> + <div class="col-md-6"> + <p class="effect">v4.1 Built with <a href="http://getbootstrap.com" title="Twitter Bootstrap" class="footer-a">Bootstrap</a>, + <a href="http://redis.io" title="Redis.io" class="footer-a">Redis</a> and <a href="http://mariadb.org" title="MariaDB.org" class="footer-a">MariaDB</a>.</p> + </div> + <div class="col-md-6"> + <p class="effect"><span class="pull-right"><span class="fa fa-copyright"></span> Copyright 2014 <a class="footer-a" href="//www.moehm.org/" target="_blank">Maximilian Möhring</a></span></p> + </div> + </div> </div> </div> - <script src="//code.jquery.com/jquery-1.10.1.min.js" defer></script> - <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" defer></script> + <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <script src="//code.jquery.com/ui/1.11.1/jquery-ui.min.js" defer></script> - <!--script src="/static/eyecancer.js" defer></script--> - <?php //<script src='/boring.js' defer></script> ?> + <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" defer></script> <?php include("static/piwik.html"); ?> <script>function loadFancy(){ document.getElementById("loader").style.visibility="visible"; @@ -21,6 +27,15 @@ return false; }</script> - </body> -</html> +<script> + $('#btn-send').click(function () { + var btn = $(this) + btn.button('loading') + $.ajax().always(function () { + }); + }); + $('.close').click(function () { + $('#btn-send').button('reset'); + }); +</script> |
