2020-02-24 04:43:53 +01:00
|
|
|
<?php
|
|
|
|
session_start();
|
|
|
|
%NO_CHEAP_SESSION_STEALING%
|
2020-02-26 19:03:55 +01:00
|
|
|
$navbar="home";
|
2020-02-24 04:43:53 +01:00
|
|
|
?>
|
2020-02-19 04:04:08 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2020-02-19 14:38:59 +01:00
|
|
|
<head>
|
|
|
|
<title>ThreadR - Home</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="%CONTENT_DIR%/style.css">
|
2020-02-23 20:12:29 +01:00
|
|
|
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
2020-02-19 14:38:59 +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-24 08:47:05 +01:00
|
|
|
|
|
|
|
<li><a href="%CONTENT_DIR%/news/">News</a></li>
|
2020-02-24 08:46:21 +01:00
|
|
|
<div class="dropdown">
|
2020-02-25 15:05:02 +01:00
|
|
|
<button class="dropbtn">Boards
|
|
|
|
<i class="fa fa-caret-down"></i> <!-- Hä? Ein leerer kursiver Textteil? -->
|
2020-02-24 08:46:21 +01:00
|
|
|
</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 14:38:59 +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 14:38:59 +01:00
|
|
|
</ul>
|
2020-02-19 23:18:20 +01:00
|
|
|
<br />
|
2020-02-19 23:06:29 +01:00
|
|
|
<div class="container">
|
|
|
|
<div class="item-1">
|
2020-02-19 14:38:59 +01:00
|
|
|
<h1>
|
2020-02-19 23:06:29 +01:00
|
|
|
<center>Welcome to</center>
|
2020-02-19 14:38:59 +01:00
|
|
|
</h1>
|
2020-02-19 23:11:52 +01:00
|
|
|
</div>
|
2020-02-19 23:48:02 +01:00
|
|
|
<div class="item-2">
|
|
|
|
<img src="%CONTENT_DIR%/img/ThreadR.svg" alt="ThreadR" height="100%" width="100%">
|
|
|
|
</div>
|
2020-02-19 10:35:45 +01:00
|
|
|
</div>
|
2020-02-19 14:38:59 +01:00
|
|
|
</body>
|
2020-02-19 04:04:08 +01:00
|
|
|
</html>
|