{% extends "base.html" %} {% load static site_settings %} {% block title %}{{ block.super }} - Welcome!{% endblock %} {% block styles %} {{ block.super }} {% endblock %} {% block custom_styles %} {{ block.super }} {{ site_globals.home_page_css|load_custom_css|safe }} {% endblock %} {% block content %}

{% if site_globals.hero_text %}{{ site_globals.hero_text }}{% else %}Welcome to Tethys Portal, the hub for your apps.{% endif %}

{% if site_globals.blurb_text %}{{ site_globals.blurb_text }}{% else %}Tethys Portal is designed to be customizable, so that you can host apps for your organization. You can change everything on this page from the Home Page settings.{% endif %} {% if not user.is_authenticated and ENABLE_OPEN_SIGNUP %} {% endif %}

{{ site_globals.feature_1_heading|default:"Feature 1" }}

{{ site_globals.feature_1_body|default:"Use these features to brag about all of the things users can do with your instance of Tethys Portal." }}

{{ site_globals.feature_2_heading|default:"Feature 2" }}

{{ site_globals.feature_2_body|default:"Describe the apps and tools that your Tethys Portal provides and add custom pictures to each feature as a finishing touch." }}

{{ site_globals.feature_3_heading|default:"Feature 3" }}

{{ site_globals.feature_3_body|default:"You can change the color theme and branding of your Tethys Portal in a jiffy. Visit the Site Admin settings from the user menu and select General Settings." }}

{% endblock %}