emoji langue
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<form th:action="@{/accueil}" method="post" class="mb-3">
|
||||
<!-- Barre de recherche -->
|
||||
<div class="mb-3">
|
||||
<input type="text" class="form-control" placeholder="Rechercher un article par nom..." name="searchTitle">
|
||||
<input type="text" class="form-control" th:attr="placeholder=#{accueil.search.title}" name="searchTitle">
|
||||
</div>
|
||||
<!-- Menu déroulant pour la sélection de la catégorie -->
|
||||
<div class="mb-3">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<title>[[${title}]]</title>
|
||||
<link rel="icon" th:href="@{img/favicon.ico}" />
|
||||
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="assets/bootstrap-icons/bootstrap-icons.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="assets/fontawesome/css/all.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@@ -33,6 +33,15 @@
|
||||
<li class="nav-item" th:if="${#authentication.principal == 'anonymousUser'}">
|
||||
<a class="btn btn-primary" href="/login" role="button" style="background-color: #1B4463;">S'inscrire / Se connecter</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-expanded="false">
|
||||
<i class="fa-solid fa-earth-americas"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
|
||||
<a class="dropdown-item" th:href="@{/change-language(lang='en')}">English</a>
|
||||
<a class="dropdown-item" th:href="@{/change-language(lang='fr')}">Français</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user