edit readme

This commit is contained in:
cube
2026-03-19 03:05:22 +00:00
parent e831560b2b
commit 93d8e39f81
2 changed files with 23 additions and 1 deletions

View File

@@ -55,5 +55,22 @@ MISC_UPLOAD_FOLDER = 'myriad/static/misc' # where other small images will be sto
# preview
- these screenshots are all from the public viewer's perspective
- homepage with pinned members
![homepage with pinned members](https://i.ibb.co/mF52TSnM/Screenshot-2026-03-19-025454.png)
![homepage with pinned members](https://i.ibb.co/mF52TSnM/Screenshot-2026-03-19-025454.png)
- main blog post feed
![main blog post feed](https://i.ibb.co/tj5WCsx/Screenshot-2026-03-19-025836.png)
- member page showing their uploaded icons (just about)
![member page](https://i.ibb.co/8LJBwVf2/Screenshot-2026-03-19-030004.png)
- groups view
![groups view](https://i.ibb.co/mF9JFR7x/Screenshot-2026-03-19-030108.png)
- a sample part of the administration
![sample administration area](https://i.ibb.co/pr6qFywy/Screenshot-2026-03-19-030406.png)
- the theme editor is pretty ugly right now but it does work
![the theme editor](https://i.ibb.co/sJRK187w/Screenshot-2026-03-19-030504.png)

View File

@@ -31,6 +31,11 @@
<div class="navitem">> <a href="{{ url_for('auth.register') }}">Register</a></div>
<div class="navitem">> <a href="{{ url_for('auth.login') }}">Log in</a></div>
{% endif %}
{% else %}
{% if g.user %}
<div class="heading">Administration</div>
<div class="navitem">> <a href="{{ url_for('auth.logout') }}">Log out</a></div>
{% endif %}
{% endif %}
</div>