2020-04-14 11:07:07 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{ meta_title }}</title>
|
|
|
|
<meta name="author" content="{{ partdb_title }}">
|
|
|
|
<meta name="description" content="Label for {{ meta_title }}">
|
|
|
|
<meta name="keywords" content="Part-DB, Label, Barcode">
|
|
|
|
<style>
|
2020-04-16 19:56:30 +02:00
|
|
|
{% include("LabelSystem/labels/label_style.css.twig") %}
|
2020-04-14 11:07:07 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-04-21 00:00:29 +02:00
|
|
|
{% for element in elements %}
|
|
|
|
{% include "LabelSystem/labels/label_page.html.twig" %}
|
|
|
|
{% if not loop.last %}
|
|
|
|
<div style="page-break-after: always;"></div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2020-04-14 11:07:07 +02:00
|
|
|
</body>
|
|
|
|
</html>
|