27 lines
597 B
Plaintext
27 lines
597 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{include 'components/head.latte', title: 'Settings'}
|
|
|
|
<body>
|
|
{include 'components/navbar.latte'}
|
|
<section class="hero is-primary">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<p class="title">Settings</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="section">
|
|
<!-- Proxy settings -->
|
|
<p class="title">Proxy</p>
|
|
{include 'components/settings/proxy.latte'}
|
|
<hr />
|
|
<!-- Following -->
|
|
<p class="title">Following</p>
|
|
{include 'components/settings/following.latte'}
|
|
</section>
|
|
{include 'components/footer.latte'}
|
|
</body>
|
|
</html>
|