Skip to content

Deployment #333

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 2, 2021
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
19 changes: 0 additions & 19 deletions .github/workflows/label.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

<properties>
<java.version>15</java.version>
<version.maven>3.6.2</version.maven>
<version.maven>3.6.3</version.maven>
<pmdVersion>6.28.0</pmdVersion>

<!-- SCM and Releasing with Maven -->
Expand Down
10 changes: 9 additions & 1 deletion src/main/resources/templates/layout/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<footer class="footer">
<nav class="navbar fixed-bottom navbar-dark bg-dark">
<div class="container">
<span class="navbar-text">© 2020 Thomas Wöhlke</span>
<span class="navbar-text">© 2021 Thomas Wöhlke</span>
</div>
</nav>
</footer>
Expand All @@ -75,6 +75,14 @@
<script th:src="@{/webjars/popper.js/1.16.1/dist/umd/popper.min.js}"></script>
<script th:src="@{/webjars/bootstrap/4.5.3/dist/js/bootstrap.bundle.js}"></script>
<script th:src="@{/webjars/font-awesome/5.15.1/js/all.js}"></script>
<script th:src="@{/webjars/ckeditor/18.0.0/classic/ckeditor.js}"></script>
<script th:inline="javascript">
ClassicEditor
.create( document.querySelector( '#textEditor' ) )
.catch( error => {
console.error( error );
} );
</script>
<!--/* Per-page placeholder for additional links */-->
<th:block th:replace="${scripts}" />

Expand Down