-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
112771d
commit 2a1e1a9
Showing
9 changed files
with
47 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
= Hello World | ||
:type: article | ||
:description: Just setting the news page up. | ||
:date: 2024-08-15 | ||
|
||
How are you doing? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
= News |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html layout:decorate="~{layout.html}"> | ||
<head> | ||
<title th:utext="${title}"></title> | ||
</head> | ||
<body> | ||
<div layout:fragment="content"> | ||
<main class="list-group"> | ||
<a th:href="@{'./' + ${currentComponent.slug} + '/' + ${currentComponent.latest ? '' : currentComponent.version.friendlyName() + '/'} + ${article.url}}" | ||
class="list-group-item list-group-item-action d-flex gap-3 py-3" | ||
th:each="article : ${articles}"> | ||
<div class="d-flex gap-2 w-100 justify-content-between"> | ||
<div> | ||
<h6 class="mb-0" th:text="${article.title}"></h6> | ||
<p class="mb-0 opacity-75" th:text="${article.description}"></p> | ||
</div> | ||
<small class="opacity-50 text-nowrap"> | ||
<i class="bi bi-clock"></i> <span th:text="${#temporals.format(article.date, 'yyyy-MM-dd')}"></span> | ||
</small> | ||
</div> | ||
</a> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
= Release notes |
File renamed without changes.
This file was deleted.
Oops, something went wrong.