-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
html: integration of search feature in html
- Loading branch information
1 parent
337a58d
commit 51b23cb
Showing
2 changed files
with
18 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Não Encontrado</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" /> | ||
</head> | ||
<body> | ||
<div class="container mt-5"> | ||
<h1>Fórum não encontrado</h1> | ||
<p>Não conseguimos encontrar um fórum com o título "{{ query }}"</p> | ||
<a href="{% url 'forum_list' %}" class="btn btn-primary">Voltar à lista de fóruns</a> | ||
</div> | ||
</body> | ||
</html> |