forked from nat/webbed-site
23 lines
871 B
HTML
23 lines
871 B
HTML
<html>
|
|
<head>
|
|
<title>woah, data</title>
|
|
<style>$[cat style.css]</style>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
$[include html/header.html]
|
|
<main>
|
|
<section>
|
|
<h1>Stats! Data! Wow!</h1>
|
|
Boring information about me and my computers, delivered right to your web browser (or terminal)!<br>
|
|
Why collect information about your users when your users could collect information about you?
|
|
</section>
|
|
<section>
|
|
<h2>Currently available information:</h2>
|
|
$[for line in $(cat main.py | grep Route -A1 | grep '/stats/' | sed "s/'//g; s/,//g"); do echo "$(make-link $line)"; done]
|
|
</section>
|
|
</main>
|
|
$[include html/footer.html]
|
|
<body>
|
|
</html>
|