mirror of
https://github.com/sorenpeter/timeline.git
synced 2025-12-15 10:57:01 +00:00
30 lines
642 B
PHP
30 lines
642 B
PHP
<?php
|
|
|
|
$paginateTwts = true;
|
|
|
|
if (!empty($_GET['url'])) { // Show twts for some user (Profile view)
|
|
$twtsURL = $_GET['url'];
|
|
} else {
|
|
$config = parse_ini_file('private/config.ini');
|
|
$twtsURL = $config['public_txt_url'];
|
|
}
|
|
|
|
require_once("partials/base.php");
|
|
|
|
$title = "Posts by ".$title;
|
|
|
|
include_once 'partials/header.php';
|
|
|
|
include_once 'partials/profile_card.php';
|
|
|
|
require_once 'libs/session.php';
|
|
|
|
if (hasValidSession()) {
|
|
include 'views/new_twt.php'; // TODO: Split up new_twt into a view and a partial
|
|
}
|
|
|
|
//include_once 'partials/search.php';
|
|
|
|
include_once 'partials/timeline.php';
|
|
|
|
include_once 'partials/footer.php';
|