summaryrefslogtreecommitdiff
path: root/assets/about.html
diff options
context:
space:
mode:
authorLawnCable <lawncable.tmw2@simonlaux.de>2018-05-20 16:21:58 -0400
committerLawnCable <lawncable.tmw2@simonlaux.de>2018-05-20 16:21:58 -0400
commit181e277b6cc4a085864d44f4e9b5a5322cf6ec4e (patch)
treee93c5fdf89ba88484c183b64dc05e012c50a4c69 /assets/about.html
parenta7f4fff0fdf72876281d7a2e78afaca625e0d6cb (diff)
downloadelectron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.gz
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.bz2
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.tar.xz
electron-181e277b6cc4a085864d44f4e9b5a5322cf6ec4e.zip
pre-prototype
Diffstat (limited to 'assets/about.html')
-rw-r--r--assets/about.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/assets/about.html b/assets/about.html
new file mode 100644
index 0000000..eb635e1
--- /dev/null
+++ b/assets/about.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+ <html>
+ <head>
+ <meta charset="UTF-8">
+ <title>About</title>
+ </head>
+ <body>
+ <h1>Versions</h1>
+ <table>
+ <tr>
+ <td>Node.js</td>
+ <td><script>document.write(process.versions.node)</script></td>
+ </tr>
+ <tr>
+ <td>Chrome</td>
+ <td><script>document.write(process.versions.chrome)</script></td>
+ </tr>
+ <tr>
+ <td>Electron</td>
+ <td><script>document.write(process.versions.electron)</script></td>
+ </tr>
+ </table>
+ </body>
+ </html>