|
|
<!-- Close section -->
|
|
</div></div>
|
|
|
|
<!-- Footer -->
|
|
<!-- Footer -->
|
|
<footer class="text-center">
|
|
<div class="footer-above">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="footer-col col-md-4">
|
|
<h3>Location</h3>
|
|
<p>Rochester Institute of Technology
|
|
<br>1 Lomb Memorial Dr, Rochester, NY 14623</p>
|
|
</div>
|
|
<div class="footer-col col-md-4">
|
|
<h3>Around the Web</h3>
|
|
<ul class="list-inline">
|
|
<li class="list-inline-item">
|
|
<a class="btn-social btn-outline" href="https://www.youtube.com/c/JrtechsNet">
|
|
<i class="fa fa-fw fa-youtube"></i>
|
|
</a>
|
|
</li>
|
|
<li class="list-inline-item">
|
|
<a class="btn-social btn-outline" href="https://github.com/jrtechs">
|
|
<i class="fa fa-fw fa-github"></i>
|
|
</a>
|
|
</li>
|
|
<li class="list-inline-item">
|
|
<a class="btn-social btn-outline" href="https://jrtechs.net">
|
|
<i class="fa fa-fw fa-wordpress"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col col-md-4">
|
|
<h3>About This Website</h3>
|
|
<p>Check out the source code for this website on my
|
|
<a href="https://github.com/jrtechs">github</a>.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="footer-below">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<p class="m-0 text-center text-white"><a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC-BY-SA 4.0</a> <script type="text/javascript">
|
|
document.write(new Date().getFullYear());
|
|
</script> Jrtechs</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>-->
|
|
|
|
<script>
|
|
var e = document.querySelector(".navbar-toggler");
|
|
var t = document.querySelector(".navbar-collapse");
|
|
var a = e.getAttribute("aria-expanded");
|
|
|
|
function getMaxHeight(t)
|
|
{
|
|
// Source: http://n12v.com/css-transition-to-from-auto/
|
|
var prevHeight = t.style.height;
|
|
t.style.height = 'auto';
|
|
var maxHeight = getComputedStyle(t).height;
|
|
t.style.height = prevHeight;
|
|
t.offsetHeight; // force repaint
|
|
return maxHeight;
|
|
}
|
|
|
|
e.onclick = function()
|
|
{
|
|
if (a == "false")
|
|
{
|
|
t.classList.remove('collapse');
|
|
e.setAttribute('aria-expanded', true);
|
|
t.style.height = getMaxHeight(t);
|
|
}
|
|
else
|
|
{
|
|
t.classList.remove("collapse");
|
|
t.classList.remove("in");
|
|
e.setAttribute("aria-expanded", false);
|
|
t.style.height = getComputedStyle(t).height;
|
|
t.offsetHeight,t.style.height="0px";
|
|
|
|
t.classList.remove('collapsing');
|
|
t.classList.add('collapse');
|
|
|
|
// Check whether the element is unhidden
|
|
if (t.style.height !== '0px') {
|
|
t.classList.add('in');
|
|
t.style.height = 'auto';
|
|
}
|
|
}
|
|
a = e.getAttribute("aria-expanded");
|
|
}
|
|
</script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js"></script>
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|