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']; $txt_file_path = $config['txt_file_path'];
require_once('session.php'); require_once('base.php');
/* /*
if (!has_valid_session()) { if (!has_valid_session()) {

View file

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