1
0
mirror of https://github.com/actix/actix-website synced 2024-11-28 02:22:57 +01:00
actix-website/layouts/partials/footer.html

33 lines
1.5 KiB
HTML
Raw Normal View History

2018-05-22 23:15:08 +02:00
<footer class="actix-footer">
<div class="text-muted actix-footer-gray d-flex justify-content-between">
<div class="actix-footer-info">
Copyright © 2018 The Actix Team
</div>
<div class="actix-footer-social">
<a href="https://github.com/actix" class="text-muted"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
</footer>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js" integrity="sha384-3ceskX3iaEnIogmQchP8opvBy3Mi7Ce34nWjpBIwVTHfGYWQS9jwHDVRnpKKHJg7" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" integrity="sha384-XTs3FgkjiBgo8qjEjBk0tGmf3wPrWtA6coPfQDfFEY8AnYJwjalXCiosYRBIBZX8" crossorigin="anonymous"></script>
<script src="/js/bootstrap.min.js"></script>
2018-05-23 23:47:00 +02:00
<script src="/js/actix.js"></script>
2018-05-22 23:15:08 +02:00
{{ template "_internal/google_analytics.html" . }}
2018-06-23 05:36:37 +02:00
<script type="text/javascript" async>
window.onload = function(){
2018-06-23 05:58:06 +02:00
if (window.location.href.indexOf("http://localhost:1314/cn/") == 0) {
2018-06-23 05:36:37 +02:00
var actix_home = document.getElementById("act-home")
actix_home.style.display = "none"
}
2018-06-23 05:58:06 +02:00
if (window.location.href.indexOf("http://localhost:1313/") == 0) {
2018-06-23 05:36:37 +02:00
var actix_home_cn = document.getElementById("act-home-cn")
actix_home_cn.style.display = "none"
}
}
</script>
2018-05-22 23:15:08 +02:00
</body>
</html>