summaryrefslogtreecommitdiffhomepage
path: root/backend/src/main/resources/templates/articles-list.html
blob: 799c751aa69b03267c3c83d816501fa3cebbdc6f (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>