- 21 rooms across 4 wings (Dormitories, Commons, Workshops, Gardens) - Full exit graph connecting all rooms bidirectionally - Room descriptions for all 16 inner rooms - 5 character accounts (wizard, Allegro, Allegro-Primus, Timmy, Ezra) - Public communication channel - Build script: world/build_academy.ev - Wing modules: world/dormitory_entrance.py, commons_wing.py, workshop_wing.py, gardens_wing.py Built by Allegro, descriptions and exit fixes by Timmy.
15 lines
760 B
Markdown
15 lines
760 B
Markdown
# HTML templates
|
|
|
|
Templates are HTML files that (usually) have special `{{ ... }}` template
|
|
markers in them to allow Evennia/Django to insert dynamic content in a web
|
|
page. An example is listing how many users are currently online in the game.
|
|
|
|
Templates are referenced by _views_ - Python functions or callable classes that
|
|
prepare the data needed by the template and 'renders' them into a finished
|
|
HTML page to return to the user.
|
|
|
|
You can replace Evennia's default templates by overriding them in this folder.
|
|
The originals are in `evennia/web/templates/` - just copy the template into the
|
|
corresponding location here (so the website's `index.html` should be copied to
|
|
`website/index.html` where it can be modified). Reload the server to see your changes.
|