mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
18 lines
325 B
HTML
18 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>GoCMS | Home</title>
|
|
{{.Head}}
|
|
</head>
|
|
<body class="text-dark">
|
|
{{.Navbar}}
|
|
<div class="container mt-3 text-black-50">
|
|
<h1>Accueil</h1>
|
|
<p>Welcome on GoCMS !</p>
|
|
<a href="/post">
|
|
<button class="btn btn-outline-primary">Posts »</button>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|