-
Notifications
You must be signed in to change notification settings - Fork 8
/
about.html
24 lines (23 loc) · 867 Bytes
/
about.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/about.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="center">
<img src="img/icon.png" height="128" width="128"/>
<h3>PineSQL</h3>
<h5>Created by ivan770</h5>
<h6 id="version">Version</h6>
</div>
<script>
const pjson = require("./package.json")
const version = document.getElementById("version")
version.innerText = `Version: ${pjson.version}`
</script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>