HH/templates/presentations/export_pdf.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

38 lines
900 B
HTML

{% load i18n static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ presentation.title }} — PDF Export</title>
<link rel="stylesheet" href="{% static 'vendor/fonts/inter/latin.css' %}">
<link rel="stylesheet" href="{% static 'css/presentations/slide-theme.css' %}">
<style>
@page {
size: 1920px 1080px;
margin: 0;
}
body {
margin: 0;
padding: 0;
}
.export-page {
width: 1920px;
height: 1080px;
page-break-after: always;
overflow: hidden;
position: relative;
}
.export-page:last-child {
page-break-after: auto;
}
</style>
</head>
<body>
{% for page in pages %}
<div class="export-page">
{{ page|safe }}
</div>
{% endfor %}
</body>
</html>