Skip to content

Commit 93b0a0a

Browse files
committed
## 2.3.34
* fixed #317 switch Context is broken * fixed #326 add Context to Breadcrumb * fixed #327 AbstractController: rename rootCategories to rootProjects (line 77) * fixed #328 AbstractController: rename allCategories to allProjects (line 66) * fixed #329 AbstractController: remove side effects from getContext (line 145, 159) * fixed #330 Add Project to Root Project: preset correct Context * fixed #331 Edit Project: update HTML Layout to current Bootstrap Version
1 parent fd62294 commit 93b0a0a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main/resources/templates/layout/page.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<footer class="footer">
6767
<nav class="navbar fixed-bottom navbar-dark bg-dark">
6868
<div class="container">
69-
<span class="navbar-text">© 2020 Thomas Wöhlke</span>
69+
<span class="navbar-text">© 2021 Thomas Wöhlke</span>
7070
</div>
7171
</nav>
7272
</footer>
@@ -75,6 +75,14 @@
7575
<script th:src="@{/webjars/popper.js/1.16.1/dist/umd/popper.min.js}"></script>
7676
<script th:src="@{/webjars/bootstrap/4.5.3/dist/js/bootstrap.bundle.js}"></script>
7777
<script th:src="@{/webjars/font-awesome/5.15.1/js/all.js}"></script>
78+
<script th:src="@{/webjars/ckeditor/18.0.0/classic/ckeditor.js}"></script>
79+
<script th:inline="javascript">
80+
ClassicEditor
81+
.create( document.querySelector( '#textEditor' ) )
82+
.catch( error => {
83+
console.error( error );
84+
} );
85+
</script>
7886
<!--/* Per-page placeholder for additional links */-->
7987
<th:block th:replace="${scripts}" />
8088

0 commit comments

Comments
 (0)