mirror of
https://github.com/bellingcat/datasheet-server.git
synced 2026-06-11 21:08:33 +03:00
add handlebars for blueprints
This commit is contained in:
8
views/blueprints.hbs
Normal file
8
views/blueprints.hbs
Normal file
@@ -0,0 +1,8 @@
|
||||
<h1>Blueprints</h1>
|
||||
|
||||
{{#each bps}}
|
||||
<div>Source: {{ source }}</div>
|
||||
<div>Tab: {{ tab }}</div>
|
||||
<div>URLS: {{ urls }}</div>
|
||||
<br>
|
||||
{{/each}}
|
||||
15
views/layouts/default.hbs
Normal file
15
views/layouts/default.hbs
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<title>Datasheet Server</title>
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
{{{body}}}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user