added thread.php

master
Erik 2020-03-02 08:52:22 +01:00
parent 2c51475223
commit 4ad6770895
1 changed files with 23 additions and 0 deletions

23
threadr/boards/thread.php Normal file
View File

@ -0,0 +1,23 @@
<?php
//todo: fix automatic log out when opening "Boards"
session_start();
%NO_CHEAP_SESSION_STEALING%
$navbar="boards";
?>
<!DOCTYPE html>
<html>
<head>
<title>ThreadR - Boards</title>
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
%NAVBAR%
<div class="container">
<div class="item-1">
<h1><center>ThreadR Boards</center></h1>
</div>
</div>
</body>
</html>