Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="row">
<div class="col-sm">
<h5><img src={{ "/assets/images/um-logo.png" | relative_url }} alt="UM logo" class="mb-1" width="105" height="114"></h5>
<small class="copy-rights cursor-pointer">&#9400; 2022 The Regents of the University of Michigan</small>
<small class="copy-rights cursor-pointer">&#9400; {{ "now" | date: "%Y" }} The Regents of the University of Michigan</small>
</div>
<div class="col-sm">
<ul class="list-unstyled">
Expand Down
4 changes: 2 additions & 2 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link type="text/css" href={{ "/assets/css/custom.css" | relative_url }} rel="stylesheet">
</head>
Expand All @@ -30,7 +30,7 @@
</main>
{% include footer.html %}

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>

</html>
4 changes: 2 additions & 2 deletions docs/docker-compose-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version: '3.8'

services:
jekyll:
image: jekyll/jekyll:latest
command: jekyll serve --port 4020 --watch --force_polling --verbose
image: jekyll/jekyll:4.2.0
command: jekyll serve --trace --port 4020 --watch --force_polling --verbose
ports:
- 4020:4020
volumes:
Expand Down