mirror of
https://github.com/penpot/penpot.git
synced 2025-02-03 04:49:03 -05:00
94 lines
1.8 KiB
Cheetah
94 lines
1.8 KiB
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>penpot - error report {{id}}</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono">
|
|
<style>
|
|
* {
|
|
font-family: "JetBrains Mono", monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
h1 {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
main {
|
|
margin: 20px;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
nav {
|
|
position: fixed;
|
|
width: 100vw;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 5px 20px;
|
|
display: flex;
|
|
background: #e3e3e3;
|
|
}
|
|
|
|
nav > div {
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
height: calc(100vh - 75px);
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
line-height: 18px;
|
|
min-width: 210px;
|
|
margin: 0px 20px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
li:hover {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
li > a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<h1>Latest error reports:</h1>
|
|
</nav>
|
|
<main>
|
|
<ul>
|
|
{% for item in items %}
|
|
<li><a href="/dbg/error/{{item.id}}">{{item.created-at}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|