47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
<%
|
|
const titleText = typeof title !== "undefined" ? title : "";
|
|
const subtitleText = typeof subtitle !== "undefined" ? subtitle : "";
|
|
const showUser = typeof showUserName !== "undefined" ? showUserName : true;
|
|
|
|
// ✅ Standard: Button anzeigen
|
|
const hideDashboard = typeof hideDashboardButton !== "undefined"
|
|
? hideDashboardButton
|
|
: false;
|
|
%>
|
|
|
|
<div class="page-header">
|
|
|
|
<!-- links -->
|
|
<div class="page-header-left"></div>
|
|
|
|
<!-- center -->
|
|
<div class="page-header-center">
|
|
<% if (showUser && user?.username) { %>
|
|
<div class="page-header-username">
|
|
Willkommen, <%= user.username %>
|
|
</div>
|
|
<% } %>
|
|
|
|
<% if (titleText) { %>
|
|
<div class="page-header-title">
|
|
<%= titleText %>
|
|
<% if (subtitleText) { %>
|
|
<span class="page-header-subtitle"> - <%= subtitleText %></span>
|
|
<% } %>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
|
|
<!-- rechts -->
|
|
<div class="page-header-right">
|
|
|
|
<% if (!hideDashboard) { %>
|
|
<a href="/dashboard" class="btn btn-outline-light btn-sm">
|
|
⬅️ Dashboard
|
|
</a>
|
|
<% } %>
|
|
|
|
<span id="datetime" class="page-header-datetime"></span>
|
|
</div>
|
|
</div>
|