This commit is contained in:
sorenpeter 2023-09-22 11:54:21 +02:00
parent 2fb7abd4be
commit caf8674639
2 changed files with 9 additions and 4 deletions

View file

@ -10,7 +10,7 @@ if ($config['debug_mode']) {
$txt_file_path = $config['txt_file_path'];
require_once('session.php');
require_once('base.php');
/*
if (!has_valid_session()) {

View file

@ -4,15 +4,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="../style.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title><?=$title?> - Timeline</title>
</head>
<body >
<!-- PHP: GET HEADER --><?php include 'partials/header.php';?>
<strong>Following: <?php echo count($twtFollowingList); ?> feeds</strong>
<center>
<h1>Following: <?php echo count($twtFollowingList); ?> feeds</h1>
<table>
<tr><th></th><th>Nick</th><th>URL</th></tr>
@ -28,5 +28,10 @@
</tr>
<?php } ?>
</table>
</center>
<!-- PHP: GET FOOTER --><?php include 'partials/footer.php';?>
</body>
</html>