├── 403.tpl ├── 404.tpl ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREATING_YOUR_OWN.md ├── LICENSE ├── README.md ├── _assets ├── css │ ├── aurora.css │ ├── extra.css │ ├── themes │ │ └── default │ │ │ └── assets │ │ │ ├── fonts │ │ │ ├── brand-icons.eot │ │ │ ├── brand-icons.svg │ │ │ ├── brand-icons.ttf │ │ │ ├── brand-icons.woff │ │ │ ├── brand-icons.woff2 │ │ │ ├── icons.eot │ │ │ ├── icons.otf │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── icons.woff2 │ │ │ ├── lato │ │ │ │ ├── lato-v22-latin-700.woff │ │ │ │ ├── lato-v22-latin-700.woff2 │ │ │ │ ├── lato-v22-latin-700italic.woff │ │ │ │ ├── lato-v22-latin-700italic.woff2 │ │ │ │ ├── lato-v22-latin-italic.woff │ │ │ │ ├── lato-v22-latin-italic.woff2 │ │ │ │ ├── lato-v22-latin-regular.woff │ │ │ │ └── lato-v22-latin-regular.woff2 │ │ │ ├── outline-icons.eot │ │ │ ├── outline-icons.svg │ │ │ ├── outline-icons.ttf │ │ │ ├── outline-icons.woff │ │ │ └── outline-icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ └── toastr.min.css └── js │ ├── chatbox.js │ ├── core │ ├── core.js │ ├── pages.js │ ├── update.js │ └── user.js │ └── portal │ └── firefly.js ├── _language └── en_UK.json ├── _settings ├── class │ └── AuroraUtil.php ├── frontend.php ├── page │ ├── about.tpl │ ├── addons.tpl │ ├── cards.tpl │ ├── colours.tpl │ ├── connections.tpl │ ├── custom.tpl │ ├── footer.tpl │ ├── home.tpl │ ├── includes │ │ └── info.tpl │ ├── main.tpl │ ├── navbar.tpl │ ├── navigation.tpl │ ├── portal.tpl │ ├── seo.tpl │ ├── theme.tpl │ └── welcome.tpl ├── settings.php └── updatechecker.php ├── aurora ├── addons.tpl ├── modern_navbar.tpl └── theme.tpl ├── authme.tpl ├── authme_email.tpl ├── change_password.tpl ├── complete_signup.tpl ├── cookies.tpl ├── craftingstore ├── category.tpl ├── index.tpl └── parts │ └── nav.tpl ├── custom.tpl ├── custom_basic.tpl ├── email ├── api_register.html ├── change_password.html ├── forum_topic_reply.html ├── register.html └── tfa.html ├── footer.tpl ├── forgot_password.tpl ├── forum ├── following_topics.tpl ├── forum_edit_post.tpl ├── forum_index.tpl ├── merge.tpl ├── move.tpl ├── new_topic.tpl ├── profile_tab.tpl ├── search.tpl ├── search_results.tpl ├── view_forum.tpl ├── view_forum_confirm_redirect.tpl ├── view_forum_no_discussions.tpl └── view_topic.tpl ├── ghost ├── index.tpl ├── post-list.tpl ├── post.tpl └── widgets │ └── latest-news.tpl ├── header.tpl ├── index.tpl ├── infractions └── infractions.tpl ├── leaderboards.tpl ├── login.tpl ├── maintenance.tpl ├── members └── members.tpl ├── navbar.tpl ├── newsletter ├── newsletter.tpl ├── unsubscribe.tpl └── widgets │ └── newsletter.tpl ├── portal.tpl ├── privacy.tpl ├── profile.tpl ├── register.tpl ├── registration_disabled.tpl ├── resources ├── author.tpl ├── categories.tpl ├── category.tpl ├── delete.tpl ├── edit_resource.tpl ├── index.tpl ├── move.tpl ├── new_resource.tpl ├── new_resource_external_link.tpl ├── new_resource_github.tpl ├── new_resource_select_release.tpl ├── new_resource_type.tpl ├── new_resource_upload.tpl ├── purchase.tpl ├── purchase_cancelled.tpl ├── purchase_pending.tpl ├── resource.tpl ├── resource_all_releases.tpl ├── resource_all_reviews.tpl ├── resource_all_versions.tpl ├── resource_view_release.tpl ├── update_resource.tpl └── user │ ├── licenses.tpl │ └── resources.tpl ├── status.tpl ├── store ├── category.tpl ├── checkout.tpl ├── checkout_add.tpl ├── checkout_complete.tpl ├── index.tpl ├── navbar.tpl ├── player_login.tpl ├── user │ └── store.tpl └── widgets │ └── latest_purchases.tpl ├── suggestions ├── categories.tpl ├── category.tpl ├── edit.tpl ├── index.tpl ├── new.tpl ├── recent_activity.tpl ├── search.tpl ├── suggestion_popover.tpl └── view.tpl ├── template.php ├── terms.tpl ├── tfa.tpl ├── trophies └── profile_tab.tpl ├── user ├── alerts.tpl ├── connections.tpl ├── index.tpl ├── messaging.tpl ├── navigation.tpl ├── new_message.tpl ├── oauth.tpl ├── placeholders.tpl ├── settings.tpl ├── tfa.tpl └── view_message.tpl ├── user_not_exist.tpl ├── user_popover.tpl ├── vote.tpl └── widgets ├── cookie_notice.tpl ├── forum └── latest_posts.tpl ├── online_staff.tpl ├── online_users.tpl ├── profile_posts.tpl ├── resources ├── latest_resources.tpl └── top_resources.tpl ├── server_status.tpl ├── statistics.tpl └── widget_error.tpl /403.tpl: -------------------------------------------------------------------------------- 1 | {include file='header.tpl'} 2 |
{$CONTENT}
7 | {if !isset($LOGGED_IN_USER)}{$CONTENT_LOGIN}
{/if} 8 | 17 |