Part-DB.Part-DB-server/templates/LabelSystem/labels/base_label.html.twig

21 lines
691 B
Twig
Raw Normal View History

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>
{% 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>