2021-12-24 02:13:08 +09:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2022-02-16 02:26:12 +09:00
|
|
|
{% import 'cards/macros/settings.html.twig' as macros %}
|
2021-12-24 02:13:08 +09:00
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
{{ parent() }}
|
2022-02-08 23:12:59 +09:00
|
|
|
<link rel="preload" href="{{ asset('assets/default_theme/pages/settings.css') }}" as="style" type="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/pages/settings.css') }}">
|
2021-12-24 02:13:08 +09:00
|
|
|
{% endblock stylesheets %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<nav class='section-settings'>
|
2022-01-24 04:46:47 +09:00
|
|
|
<h1>Settings</h1>
|
2021-12-24 02:13:08 +09:00
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
{% set profile_tabs = [{'title': 'Personal Info', 'desc': 'Nickname, Homepage, Bio, Self Tags and more.', 'id': 'settings-personal-info', 'form': personal_info_form}] %}
|
|
|
|
{% set profile_tabs = profile_tabs|merge(handle_event('PopulateSettingsTabs', app.request, 'profile')) %}
|
|
|
|
{{ macros.settings_details_container('Profile', 'Personal Information, Avatar and Profile', 'settings-profile-details', profile_tabs, _context) }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
{% endblock body %}
|