mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
Renamed the 'Article' domain to 'Post' in order to better reflect the purpose and utility of the object. The change involved renaming all related use cases, classes, and other references from 'Article' to 'Post' and updating all functions and data types to work with Posts instead of Articles.
23 lines
561 B
HTML
23 lines
561 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<title>GohCMS | Accueil</title>
|
|
|
|
<link rel="stylesheet" href="/static/bootstrap.min.css" type="text/css">
|
|
<script src="/static/bootstrap.min.js"
|
|
type="application/javascript"
|
|
defer></script>
|
|
|
|
</head>
|
|
<body class="text-dark">
|
|
{{.Navbar}}
|
|
<div class="container mt-3 text-black-50">
|
|
<h1>Accueil</h1>
|
|
<p>Bienvenue sur GohCMS !</p>
|
|
<button class="btn btn-outline-primary">Posts »</button>
|
|
</div>
|
|
</body>
|
|
</html>
|