Ignore:
Timestamp:
02/06/23 15:13:02 (22 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
f9cc555
Parents:
f8ef9bd
Message:

I CALLED A PROCEDURE FROM SPRING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/film.html

    rf8ef9bd r43a1688  
    1 <!DOCTYPE html>
    2 <html lang="en">
    3 <head>
    4     <meta charset="UTF-8">
    5     <title>Title</title>
    6 </head>
    7 <body>
     1<style>
     2    .genres{
     3        width: 100px;
     4        text-align: center;
     5        background-color: #ff5019;
     6        border-radius: 20px;
     7        color: #111111;
     8        font-size: 20px;
     9        font-weight: 200;
     10        margin: 20px;
     11    }
     12    .main{
     13        display: flex;
     14        justify-content: flex-start;
     15        align-items: flex-start;
     16        margin-left: 100px;
     17    }
     18</style>
     19<div xmlns:th="http://www.thymeleaf.org">
     20<div class="main">
     21        <div class="container-1">
     22            <h1 style="color: white; font-weight: 600" class="name" th:text="${film.getName()}">
     23            </h1>
     24            <div th:each="genre : ${genres}" class="genres">
     25                <span th:text="${genre}"></span>
     26            </div>
    827
    9 </body>
    10 </html>
     28        </div>
     29
     30</div>
     31</div>
     32</div>
Note: See TracChangeset for help on using the changeset viewer.