43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<title>Pack</title>
|
|
<link rel="icon" href="assets/favicon.ico?v=2">
|
|
<link rel="stylesheet" href="assets/index.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
</head>
|
|
<body>
|
|
<div id="themeSwitchContainer">
|
|
<input type="checkbox" id="themeSwitch">
|
|
<span></span><span></span><span></span>
|
|
</div>
|
|
<div id="package">
|
|
<img src="assets/fragile.svg">
|
|
<img src="assets/keep_dry.svg">
|
|
<img src="assets/recycle.svg">
|
|
<img src="assets/qr_code.svg">
|
|
</div>
|
|
{% include "svgTape.svg" %}
|
|
<div id="packageLabel">
|
|
<div id="packageLabelTop">{% include "labelTop.html" %}</div>
|
|
<div id="packageLabelTitle">
|
|
<h1><b></b></h1>
|
|
</div>
|
|
<div id="packageLabelContent">
|
|
<h1>{{ content_text | upper }}</h1>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<div id="packageLabelBot">
|
|
{% include "labelBot.svg" %}
|
|
<a href="/">{{ config.domain }}</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
{% include "js/base.js" %}
|
|
{% block script %}{% endblock %}
|
|
</script>
|
|
</html>
|