Praxissofttware/views/layout.ejs

19 lines
381 B
Plaintext

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
<%= typeof title !== "undefined" ? title : "Privatarzt Software" %>
</title>
<!-- ✅ Global CSS -->
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<%- body %>
</body>
</html>