This repository was archived by the owner on May 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.39 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.39 KB
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
37
<!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>
<a class="exclude-from-query tooltip is-tooltip-right" data-tooltip="Exclude from current search"><i class="mdi mdi-filter-remove-outline"></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>