feature: idk

This commit is contained in:
Jan Klattenhoff 2024-01-18 13:39:10 +01:00
parent 28810c6910
commit 7ba799eab1
11 changed files with 410 additions and 8 deletions

16
templates/base.html.twig Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>

View file

@ -0,0 +1,13 @@
{% extends 'base.html.twig' %}
{% block body %}
<h1>Printers</h1>
<table id="table">
<tr>
<th>Name</th>
<th>Price</th>
<th>Build Volume</th>
<th>Max Speed</th>
</tr>
</table>
{% endblock %}