-
Notifications
You must be signed in to change notification settings - Fork 0
/
petsinform.tpl
29 lines (29 loc) · 1.14 KB
/
petsinform.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/style.css"> <!-- Link para o seu CSS -->
<title>Informações dos Pets para Adoção</title>
</head>
<body>
<div class="container">
<h1>Pets Disponíveis para Adoção</h1>
<div class="pets-list">
{{#each pets}}
<div class="pet-card">
<h2>{{this.name}}</h2>
<p><strong>Tipo:</strong> {{this.type}}</p>
<p><strong>Raça:</strong> {{this.breed}}</p>
<p><strong>Idade:</strong> {{this.age}} anos</p>
<p><strong>Descrição:</strong> {{this.description}}</p>
<p><strong>Responsável:</strong> {{this.responsible}}</p>
<p><strong>Celular:</strong> {{this.cellphone}}</p>
<p><strong>Gênero:</strong> {{this.gender}}</p>
</div>
{{/each}}
</div>
<a href="/pagina/{{username}}"><button>Voltar</button></a>
</div>
</body>
</html>