blob: a14a5e3632d845b139ee7bd2acf574ef499b891c (
plain) (
blame)
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
|
</div>
</div>
<div class="footer-wrapper-collapse">
<footer class="navbar-default">
<div class="container">
<div style="display: table; width: 100%;">
<div style="display: table-row;">
<div style="display: table-cell;">
<div class="text-center text-muted"><small>This project is licensed under the terms of the {{ site.settings.project.license }}. See <a href="{{ '/' | relative_url }}{{ site.settings.project.license_file }}">License</a> for details.</small></div>
</div>
</div>
<div style="display: table-row;">
<div style="display: table-cell;">
<div class="text-center text-muted"><small>This version of the page was generated on {{ site.time | date: '%-d %B %Y' }}.</small></div>
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
{% if site.settings.3rdparty.minified %}
<script src="https://code.jquery.com/jquery-{{ site.settings.3rdparty.versions.jquery }}.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/js/bootstrap.min.js"></script>
{% else %}
<script src="https://code.jquery.com/jquery-{{ site.settings.3rdparty.versions.jquery }}.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/{{ site.settings.3rdparty.versions.bootstrap }}/js/bootstrap.js"></script>
{% endif %}
</body>
</html>
|