forked from cashapp/logquacious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 1.23 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en" class="has-navbar-fixed-top">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="./lq.png"/>
<title>Logquacious</title>
<link rel="stylesheet" type="text/css" href="./node_modules/@mdi/font/css/materialdesignicons.css">
<link rel="stylesheet" type="text/css" href="./node_modules/flatpickr/dist/flatpickr.css">
<link rel="stylesheet" type="text/css" href="./app.sass">
</head>
<body>
<div id="app"></div>
<template id="logs-entry-template">
<div class="entry">
<div class="unexpanded">
<div class="fields">
</div>
<div class="text"></div>
</div>
<div class="hover">
<a class="copy-to-clipboard tooltip is-tooltip-right" data-tooltip="Copy value to clipboard"><i class="mdi mdi-content-copy"></i></a>
<a class="add-to-query tooltip is-tooltip-right" data-tooltip="Add to current search"><i class="mdi mdi-filter-plus"></i></a>
</div>
<div class="expanded is-hidden"></div>
</div>
</template>
<noscript>JavaScript is required.</noscript>
</body>
</html>
<script src="src/main.tsx" type="application/ecmascript"></script>