69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
<?php include ('header.php'); ?>
|
|
<main id="main">
|
|
<?php include dirname(__FILE__).('/widgets/settings_header.php'); ?>
|
|
<div class="article_wrap">
|
|
<aside class="left_column">
|
|
<?php include dirname(__FILE__).('/widgets/side_current_user.php'); ?>
|
|
<?php include dirname(__FILE__).('/widgets/side_footer.php'); ?>
|
|
</aside>
|
|
<article class="center_column">
|
|
<header class="timeline_header">
|
|
<ul class="header_items">
|
|
<li class="item toots view">Appearance settings</li>
|
|
</ul>
|
|
</header>
|
|
<div class="timeline">
|
|
<div style="float:left;width:25%;text-align:right;margin-top:16px">
|
|
<h3>New posts streaming</h3>
|
|
</div>
|
|
<div class="post_streaming_wrap" style="float:left;width:75%;margin-top:8px;margin-bottom:-8px">
|
|
<div class="radiobox">
|
|
<input id="streaming-1" name="post_streaming" type="radio" value="auto">
|
|
<label for="streaming-1" class="radiotext">Auto update</label>
|
|
</div>
|
|
<div class="radiobox">
|
|
<input id="streaming-2" name="post_streaming" type="radio" value="manual">
|
|
<label for="streaming-2" class="radiotext">Manual update</label>
|
|
</div>
|
|
</div>
|
|
<div style="float:left;width:25%;text-align:right;margin-top:16px">
|
|
<h3>Enable link previews</h3>
|
|
</div>
|
|
<div class="link_previews_wrap" style="float:left;width:75%">
|
|
<div class="switch">
|
|
<input type="checkbox" id="setting_link_previews">
|
|
<div class="switch-btn">
|
|
<span></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="float:left;width:25%;text-align:right;margin-top:16px">
|
|
<h3>Desktop notifications</h3>
|
|
</div>
|
|
<div class="desktop_notifications_wrap" style="float:left;width:75%">
|
|
<div class="switch">
|
|
<input type="checkbox" id="setting_desktop_notifications">
|
|
<div class="switch-btn">
|
|
<span></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div style="float:left;width:25%;text-align:right;margin-top:16px">
|
|
<h3>Show replies</h3>
|
|
</div>
|
|
<div class="show_replies_wrap" style="float:left;width:75%">
|
|
<div class="switch">
|
|
<input type="checkbox" id="setting_show_replies">
|
|
<div class="switch-btn">
|
|
<span></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span style="visibility:hidden">-</span>
|
|
</div>
|
|
</article>
|
|
</div>
|
|
</main>
|
|
<script src="/assets/js/halcyon/halcyonSettings.js"></script>
|
|
<?php include ('footer.php'); ?>
|