{% extends 'settings/account/master.twig' %} {% set mode = 'Profile' %} {% block description %}

These are the external account links etc. on your profile, shouldn't need any additional explanation for this one.

{% endblock %} {% set months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", ] %} {% set fields = { "website": { "title": "Website", "type": "url", "placeholder": "The url of your site, personal blog, anything you want!", "name": "profile_website", "value": user.website, }, "twitter": { "title": "Twitter", "type": "text", "placeholder": "The true shitpost platform.", "name": "profile_twitter", "value": user.twitter, }, "github": { "title": "GitHub", "type": "text", "placeholder": "So we can find you on there too!", "name": "profile_github", "value": user.github, }, "skype": { "title": "Skype", "type": "text", "placeholder": "Because people still use it for some reason...", "name": "profile_skype", "value": user.skype, }, "discord": { "title": "Discord", "type": "text", "placeholder": "Somehow way better than Skype.", "name": "profile_discord", "value": user.discord, }, "youtube": { "title": "YouTube", "type": "text", "placeholder": "Share your room tours with the world!", "name": "profile_youtube", "value": user.youtube, }, "steam": { "title": "Steam", "type": "text", "placeholder": "Something something video games.", "name": "profile_steam", "value": user.steam, }, "osu": { "title": "osu!", "type": "text", "placeholder": "Click circles like a mad motherfucker!", "name": "profile_osu", "value": user.osu, }, "lastfm": { "title": "Last.fm", "type": "text", "placeholder": "Somehow WAYLT threads made for a good business model.", "name": "profile_lastfm", "value": user.lastfm, }, } %} {% set birthday = user.birthday|split('-') %} {% block settingsContent %}
{% for id, vars in fields %}

{{ vars.title }}

{% endfor %}

Birthday

Day: Month: Year:
{% endblock %}