瀏覽代碼

edit readme

cube 3 天之前
父節點
當前提交
93d8e39f81
共有 2 個檔案被更改,包括 23 行新增1 行删除
  1. 18
    1
      README.md
  2. 5
    0
      myriad/templates/base.html

+ 18
- 1
README.md 查看文件

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

+ 5
- 0
myriad/templates/base.html 查看文件

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