mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
The changes in this commit were made to translate the website's text content from French to English, as part of efforts to ensure the platform is more accessible to a wider audience. This includes translation of user-facing instructions, button labels, form fields, and messages across multiple templates including home.html, setup1.html, setup2.html, and login.html among others.
18 lines
327 B
HTML
18 lines
327 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>GohCMS | Home</title>
|
|
{{.Head}}
|
|
</head>
|
|
<body class="text-dark">
|
|
{{.Navbar}}
|
|
<div class="container mt-3 text-black-50">
|
|
<h1>Accueil</h1>
|
|
<p>Welcome on GohCMS !</p>
|
|
<a href="/post">
|
|
<button class="btn btn-outline-primary">Posts »</button>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|