diff options
Diffstat (limited to 'stats.php')
-rwxr-xr-x | stats.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/stats.php b/stats.php index 8bf158a..068dda3 100755 --- a/stats.php +++ b/stats.php @@ -3,27 +3,28 @@ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <title>tilde.institute :: Stats</title> - <link rel="stylesheet" href="tilde.css" type="text/css"/> - <link rel="icon" type="image/png" href="icon.png"/> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>tilde.institute :: Stats</title> + <link rel="stylesheet" href="tilde.css" type="text/css"/> + <link rel="icon" type="image/png" href="icon.png"/> + <?php include("_webmention.html") ?> </head> <body> <div id="container"> <?php include("header.html"); ?> - <div id="content"> + <div id="content"> <br /> <!--<p><code><?php include("table.weekconns"); ?></code> unique users logged in this week (resets Saturdays <code>00:00 UTC</code>)</p>--> - <div style="max-width: 25%; margin: 0 auto;"> - <p style="text-align: center;">Connected Users (<code>5min</code>):</p> + <div style="max-width: 25%; margin: 0 auto;"> + <p style="text-align: center;">Connected Users (<code>5min</code>):</p> <?php include("table.connusers"); ?> </div> <div class="userlist"> - <p>Registered Users (<code>1hr</code>):</p> + <p>Registered Users (<code>1hr</code>):</p> <?php include("table.regusers"); ?> </div> - </div> + </div> </div> </body> </html> |