mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
19 lines
465 B
Cheetah
19 lines
465 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>
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono">
|
||
|
<style>
|
||
|
{% include "templates/styles.css" %}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|
||
|
|