mirror of
https://github.com/penpot/penpot.git
synced 2026-02-13 07:02:58 +00:00
* ✨ Add major improvement on error handling * ✨ Add the ability to store frontend reports * 📎 Add PR feedback changes
18 lines
378 B
Cheetah
18 lines
378 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<style>
|
|
{% include "app/templates/styles.css" %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|
|
|