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