2020-02-24 04:43:53 +01:00
|
|
|
|
<?php
|
2020-02-24 08:49:34 +01:00
|
|
|
|
//todo: fix automatic log out when opening "News"
|
2020-02-24 04:43:53 +01:00
|
|
|
|
session_start();
|
|
|
|
|
%NO_CHEAP_SESSION_STEALING%
|
|
|
|
|
?>
|
2020-02-19 22:51:52 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>ThreadR - News</title>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
2020-02-23 20:15:34 +01:00
|
|
|
|
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
2020-02-19 22:51:52 +01:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<ul class="topnav">
|
2020-02-25 15:05:02 +01:00
|
|
|
|
<li>%HOME_LINK%</li>
|
2020-02-19 22:51:52 +01:00
|
|
|
|
<li><a class="active" href="%CONTENT_DIR%/news/">News</a></li>
|
2020-02-24 08:37:09 +01:00
|
|
|
|
<!--<li><a href="%CONTENT_DIR%/boards/">Boards</a></li>-->
|
|
|
|
|
<div class="dropdown">
|
2020-02-25 15:05:02 +01:00
|
|
|
|
<button class="dropbtn">Boards
|
2020-02-24 08:37:09 +01:00
|
|
|
|
<i class="fa fa-caret-down"></i>
|
|
|
|
|
</button>
|
|
|
|
|
<div class="dropdown-content">
|
|
|
|
|
<a href="%CONTENT_DIR%/boards/">Board 1</a>
|
|
|
|
|
<a href="#">Board 2</a>
|
|
|
|
|
<a href="#">Board 3</a>
|
|
|
|
|
</div>
|
2020-02-25 15:05:02 +01:00
|
|
|
|
</div>
|
2020-02-19 22:51:52 +01:00
|
|
|
|
<li><a href="%CONTENT_DIR%/about/">About</a></li>
|
2020-02-25 15:05:02 +01:00
|
|
|
|
<li class="right">%LOGIN_LINK%</li>
|
2020-02-19 22:51:52 +01:00
|
|
|
|
</ul>
|
2020-02-19 23:29:43 +01:00
|
|
|
|
<br />
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="item-1">
|
2020-02-19 22:51:52 +01:00
|
|
|
|
<h1>
|
|
|
|
|
<center>ThreadR Newsfeed</center>
|
|
|
|
|
</h1>
|
2020-02-21 10:33:28 +01:00
|
|
|
|
</div>
|
2020-02-21 10:40:56 +01:00
|
|
|
|
<div class="item-2">
|
2020-02-21 10:39:24 +01:00
|
|
|
|
<ul class="list">
|
2020-02-21 10:52:40 +01:00
|
|
|
|
<li><p> 2020-02-21 Whole Website updated: Homepage, News, Boards, About, Log In, Userhome, Log Out</p></li>
|
2020-02-21 10:47:51 +01:00
|
|
|
|
<li><p> 2020-01-06 First Steps done </p></li>
|
2020-02-25 15:05:02 +01:00
|
|
|
|
<li><pre> @ my fellow devs: Yeeee! This will be gone once the DB table is in place. Don’t bother. </pre></li>
|
2020-02-24 04:43:53 +01:00
|
|
|
|
</ul>
|
2020-02-19 22:51:52 +01:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|