Files
CutList/CutList.Web/Components/App.razor
2026-02-07 14:36:44 -05:00

37 lines
1.2 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/report.css" />
<link rel="stylesheet" href="CutList.Web.styles.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<HeadOutlet @rendermode="InteractiveServer" />
</head>
<body>
<Routes @rendermode="InteractiveServer" />
<script src="_framework/blazor.web.js"></script>
<script>
function printWithTitle(title) {
const originalTitle = document.title;
document.title = title;
const restoreTitle = () => {
document.title = originalTitle;
window.removeEventListener('afterprint', restoreTitle);
};
window.addEventListener('afterprint', restoreTitle);
window.print();
}
</script>
</body>
</html>