isite
Version:
Create High Level Multi-Language Web Site [Fast and Easy]
23 lines (20 loc) • 614 B
HTML
<html lang="En">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Print</title>
</head>
<body class="print-mode">
##data.content##
<script>
document.querySelectorAll('.not-print').forEach((el) => {
el.remove();
});
window.addEventListener('load', () => {
window.print({});
});
</script>
</body>
</html>