diff --git a/evennia/web/website/templates/website/base.html b/evennia/web/website/templates/website/base.html index 8004523b9b..f265d91624 100644 --- a/evennia/web/website/templates/website/base.html +++ b/evennia/web/website/templates/website/base.html @@ -38,7 +38,7 @@
- +
{{ game_name }}
{{game_slogan}} @@ -52,7 +52,9 @@
  • Home
  • -
  • About
  • +
  • + About +
  • Documentation
  • Admin Interface
  • {% if webclient_enabled %} @@ -84,7 +86,7 @@
    -
    +
    {% if sidebar %}
    diff --git a/evennia/web/website/templates/website/index.html b/evennia/web/website/templates/website/index.html index 01ca741213..d7370b8803 100644 --- a/evennia/web/website/templates/website/index.html +++ b/evennia/web/website/templates/website/index.html @@ -1,86 +1,108 @@ {% extends "base.html" %} -{% block sidebar %} -{% endblock %} - {% block header_ext %} {% endblock %} {% block content %} -
    -
    -
    -
    -

    Welcome!

    -
    -

    Welcome to your new installation of Evennia, your friendly - neighborhood next-generation MUD development system and server. You are looking at Evennia's web - presence, which can be expanded to a full-fledged site as - needed. Through the admin interface you can view and edit the - database without logging into the game. - {% if webclient_enabled %} - You can also connect to the game directly from your browser using our - online client!
    - {% endif %} - For more info, take your time to - peruse our extensive online documentation. -

    - Should you have any questions, concerns, bug reports, or - if you want to help out, don't hesitate to join the Evennia community to make your voice heard! Drop a mail to the - mailing list or to come say hi in the developer chatroom. If you find bugs, please report them to our Issue tracker. -

    -
    -
    -
    +
    +
    +
    +
    +

    Welcome!

    + +
    + +

    + Welcome to your new installation of Evennia, your friendly + neighborhood next-generation MUD development system and server. +

    +

    + You are looking at Evennia's web + presence, which can be expanded to a full-fledged site as needed.
    + Through the admin interface you can view and edit the + database without logging into the game. +

    + {% if webclient_enabled %} +

    + You can also connect to the game directly from your browser using our + online client!
    +

    + {% endif %} + For more info, take your time to + peruse our extensive online documentation. +

    +

    + Should you have any questions, concerns, bug reports, or + if you want to help out, don't hesitate to join the Evennia community to make your voice heard! Drop a mail to the + mailing list or to come say hi in the developer chatroom. +

    +

    + If you find bugs, please report them to our Issue tracker. +

    +
    -
    -
    -
    -
    -

    Players

    -
    -

    - There's currently {{num_players_connected}} connected out of a total of {{num_players_registered}} players registered. Of these, {{num_players_registered_recent}} were created this week, and {{num_players_connected_recent}} have connected within the last seven days. -

    -
    -
    -
    -
    -
    -

    Recently Connected

    -
    -
      - {% for player in players_connected_recent %} -
    • {{player.username}} -- {{player.last_login|timesince}} ago
    • - {% endfor %} -
    -
    -
    -
    -
    -
    -

    Database Stats

    -
    -
      -
    • {{num_players_registered}} players (+ {{num_characters}} characters)
    • -
    • {{num_rooms}} rooms (+ {{num_exits}} exits)
    • -
    • {{num_others}} other objects
    • -
    -
    -
    -
    -
    -
    -

    Evennia

    -
    -

    Evennia is an open-source MUD server built in - Python, on top of the - Twisted and - Django frameworks. This - combination of technologies allows for the quick and easy creation - of the game of your dreams - as simple or as complex as you like.

    -
    -
    -
    +
    +
    + +
    + +
    +
    +
    +

    Players

    + +
    +

    + There's currently {{num_players_connected}} connected out of a total of {{num_players_registered}} players registered. +

    +

    + Of these, {{num_players_registered_recent}} were created this week, and {{num_players_connected_recent}} have connected within the last seven days. +

    +
    +
    + +
    +
    +

    Recently Connected

    + +
    +
      + {% for player in players_connected_recent %} +
    • {{player.username}} -- {{player.last_login|timesince}} ago
    • + {% endfor %} +
    +
    +
    +
    + +
    +
    +

    Database Stats

    + +
    +
      +
    • {{num_players_registered}} players (+ {{num_characters}} characters)
    • +
    • {{num_rooms}} rooms (+ {{num_exits}} exits)
    • +
    • {{num_others}} other objects
    • +
    +
    +
    +
    + +
    +
    +

    Evennia

    + +
    +

    Evennia is an open-source MUD server built in + Python, on top of the + Twisted and + Django frameworks. This + combination of technologies allows for the quick and easy creation + of the game of your dreams - as simple or as complex as you like.

    +
    +
    +
    +
    {% endblock %}