37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php include ('header.php'); ?>
|
|
<main id="main" class="home">
|
|
<div class="article_wrap">
|
|
<aside class="left_column">
|
|
<?php include dirname(__FILE__).('/widgets/side_current_user.php'); ?>
|
|
<?php include dirname(__FILE__).('/widgets/side_load_options.php'); ?>
|
|
</aside>
|
|
<article class="center_column">
|
|
<header class="timeline_header">
|
|
<?php include dirname(__FILE__).('/widgets/create_status.php'); ?>
|
|
</header>
|
|
<div id="js-stream_update">
|
|
<button>
|
|
View <span></span> new Toots
|
|
</button>
|
|
</div>
|
|
<ul id="js-timeline" class="timeline">
|
|
</ul>
|
|
<footer id="js-timeline_footer" class="timeline_footer">
|
|
<i class="fa fa-spin fa-circle-o-notch" aria-hidden="true"></i>
|
|
</footer>
|
|
</article>
|
|
<aside class="right_column">
|
|
<section class="side_widgets_wrap">
|
|
<?php include dirname(__FILE__).('/widgets/side_who_to_follow.php'); ?>
|
|
</section>
|
|
<?php include dirname(__FILE__).('/widgets/side_footer.php'); ?>
|
|
</aside>
|
|
</div>
|
|
</main>
|
|
<script>
|
|
current_file = location.pathname;
|
|
setTimeline("timelines/home");
|
|
$("#home_nav").addClass('view');
|
|
$('title').text('Halcyon');
|
|
</script>
|
|
<?php include ('footer.php'); ?>
|