123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php include ('header.php'); ?>
- <main id="main">
- <?php include dirname(__FILE__).('/widgets/user_header.php'); ?>
- <div class="article_wrap">
- <aside class="left_column">
- <div class="profile_icon_box">
- <img id="js_profile_image" src="/assets/images/missing.png" mediaaccess="true">
- </div>
- <section class="profile_section_wrap">
- <h1 class="profile_displayname">
- <a id="js_profile_displayname" href="#"></a>
- </h1>
- <h2 class="profile_username">
- @<a id="js_profile_username" href="#"></a>
- </h2>
- <p id="js_profile_bio" class="profile_bio"></p>
- <div id="js_profile_fields" class="profile_fields"></div>
- <div id="js_profile_public_link" class="profile_with_icon invisible" style="margin-bottom:5px">
- <a target="_blank"><i class="fa fa-fw fa-link" aria-hidden="true"></i><span><?=_('Open public profile')?></span></a>
- </div>
- <div id="js_profile_joined_date" class="profile_with_icon" style="margin-bottom:5px">
- <span><i class="fa fa-fw fa-calendar" aria-hidden="true"></i><span></span></span>
- </div>
- <?php include dirname(__FILE__).('/widgets/user_recent_images.php'); ?>
- </section>
- </aside>
- <article class="center_column">
- <header class="timeline_header">
- <ul class="header_items">
- <li class="item toots view">
- <a id="toots_link">
- <?=_('Favourites')?>
- </a>
- </li>
- </ul>
- </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;
- $("#js-profile_nav_favourites").toggleClass("view");
- $("#js-profile_nav_toots > a").attr('href', './'+location.search);
- $("#js-profile_nav_following > a").attr('href', 'following'+location.search);
- $("#js-profile_nav_followers > a").attr('href', 'followers'+location.search);
- $("#js-profile_nav_favourites > a").attr('href', 'favourites'+location.search);
- <?php if (isset($_GET['mid'])): ?>
- $(function() {
- const account_id = "<?php echo $_GET['mid']; ?>";
- api.get('accounts/'+account_id, function(AccountObj) {
- if ( AccountObj !== null ) {
- setAccount(AccountObj);
- setTimeline("favourites");
- setRecentImages(AccountObj.id);
- } else {
- location.href = "/404.php";
- }
- });
- });
- <?php elseif((isset($_GET['user']))): ?>
- $(function(){
- <?php
- $name = preg_split("/@/", $_GET['user'])[1];
- $domain = preg_split("/@/", $_GET['user'])[2];
- $url= "https://$domain/@$name";
- ?>
- const query = '<?= htmlspecialchars((string)filter_input(INPUT_GET, 'user'), ENT_QUOTES) ?>';
- api.get('search', [{name:'q',data:query},{name:'resolve',data:'true'}], function(search) {
- if ( !search.accounts.length ) {
- location.href="/404.php";
- } else if ("@"+search.accounts[0].acct === query || "@"+search.accounts[0].acct+"@"+localStorage.current_instance === query) {
- setAccount(search.accounts[0]);
- setTimeline("favourites");
- setRecentImages(search.accounts[0]);
- } else {
- location.href="/404.php";
- }
- });
- })
- <?php endif; ?>
- </script>
- <?php include ('footer.php'); ?>
|