mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
18 lines
469 B
Cheetah
18 lines
469 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 "app/templates/styles.css" %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|
|
|