summaryrefslogtreecommitdiffhomepage
path: root/backend/src/main/resources/templates/articles-list.html
blob: 3e133df1b55606f9a21d09eda46f3f98cd89f74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>blah blah</h1>
<div th:each="article :${articles}" style="">
    <div>my aga article</div>
    <h2 th:text="${article.title}"></h2>
    <img th:src="${article.photoUrl}" alt="..."/>
    <p th:text="${article.content}"></p>
</div>
</body>
</html>