mirror of
https://github.com/thomasjwebb/thomasjwebb.git
synced 2025-12-19 03:09:51 +00:00
28 lines
763 B
HTML
28 lines
763 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
{% include head.html %}
|
||
|
|
|
||
|
|
<body>
|
||
|
|
|
||
|
|
{% if page.title == "Home" %}{% include particles-home.html %}{% endif %}
|
||
|
|
{% if page.title == "404" %}{% include particles-404.html %}{% endif %}
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
<div class="row justify-content-center">
|
||
|
|
<div class="col">
|
||
|
|
{{ content }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="{{ '/assets/js/bootstrap.min.js' | prepend: site.url }}"></script>
|
||
|
|
{% if page.title != "404" %}
|
||
|
|
<!-- <script src="{{ '/assets/js/darkmode.js' | prepend: site.url }}"></script> -->
|
||
|
|
{% endif %}
|
||
|
|
{% if page.title == "Home" or page.title == "404" %}
|
||
|
|
<script src="assets/js/particles.min.js"></script>
|
||
|
|
<script src="assets/js/main.js"></script>
|
||
|
|
{% endif %}
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|