diff --git a/_sakura/templates/misaki/forum/forum.tpl b/_sakura/templates/misaki/forum/forum.tpl index 1db80f0..3e6f421 100644 --- a/_sakura/templates/misaki/forum/forum.tpl +++ b/_sakura/templates/misaki/forum/forum.tpl @@ -1,5 +1,19 @@
- {% for category in board.forums %} - {% include 'forum/forumEntry.tpl' %} + {% for forum in forum.forums %} + {% if forum.type == 1 %} + {% if forum.forums|length %} +
+
+
{% if forum.type != 1 %}Subforums{% else %}{{ forum.name }}{% endif %}
+
{{ forum.description }}
+
+ {% for forum in forum.forums %} + {% include 'forum/forumEntry.tpl' %} + {% endfor %} +
+ {% endif %} + {% else %} + {% include 'forum/forumEntry.tpl' %} + {% endif %} {% endfor %}
diff --git a/_sakura/templates/misaki/forum/forumEntry.tpl b/_sakura/templates/misaki/forum/forumEntry.tpl index 680d365..87791e0 100644 --- a/_sakura/templates/misaki/forum/forumEntry.tpl +++ b/_sakura/templates/misaki/forum/forumEntry.tpl @@ -1,45 +1,35 @@ -{% if category.forums|length and category.forum|length %} -
-
-
{% if category.forum.forum_type != 1 %}Subforums{% else %}{{ category.forum.forum_name }}{% endif %}
-
{{ category.forum.forum_desc }}
+
+ +
+
+
+ {{ forum.name }} +
+ {{ forum.description }} + {% if forum.forums|length %} + + {% endif %}
- {% for forum in category.forums %} -
- -
-
-
- {{ forum.forum_name }} -
- {{ forum.forum_desc }} - {% if board.forums[forum.forum_id]|length %} - - {% endif %} -
-
- {% if forum.forum_type != 2 %} -
-
{{ forum.topic_count }}
-
/
-
{{ forum.post_count }}
-
-
-
- {% if forum.last_post.post_id %} - {{ forum.last_post.post_subject }}
- {{ forum.last_post.elapsed }} by {% if forum.last_poster.id %}{{ forum.last_poster.username }}{% else %}[deleted user]{% endif %} - {% else %} - There are no posts in this forum. - {% endif %} -
-
- {% endif %} -
- {% endfor %}
-{% endif %} + {% if forum.forum_type != 2 %} +
+
{{ forum.threadCount }}
+
/
+
{{ forum.postCount }}
+
+
+
+ {% if forum.lastPost.id %} + {{ forum.lastPost.subject|slice(0, 25) }}{% if forum.lastPost.subject|length > 25 %}...{% endif %}
+ {{ forum.lastPost.timeElapsed }} by {% if forum.lastPost.poster.id %}{{ forum.lastPost.poster.username }}{% else %}[deleted user]{% endif %} + {% else %} + There are no posts in this forum. + {% endif %} +
+
+ {% endif %} +
diff --git a/_sakura/templates/misaki/global/master.tpl b/_sakura/templates/misaki/global/master.tpl index 4d0d19a..d2de389 100755 --- a/_sakura/templates/misaki/global/master.tpl +++ b/_sakura/templates/misaki/global/master.tpl @@ -127,7 +127,7 @@
-
Copyright © 2013-2015 Flashwave, et al.
+
Powered by Sakura, Flashwave 2013-2015
Terms of Service | Contact | FAQ | Rules | Changelog | Status
diff --git a/public/content/data/misaki/css/misaki.css b/public/content/data/misaki/css/misaki.css index 9d7a0d5..1bbd645 100755 --- a/public/content/data/misaki/css/misaki.css +++ b/public/content/data/misaki/css/misaki.css @@ -1,4 +1,4 @@ -/* +/* * Sakura Misaki Style * By Flashwave */ @@ -170,8 +170,9 @@ a:active { } #footer > .inner { - max-width: 1024px; + max-width: 976px; margin: 0 auto; + padding: 0 24px; display: flex; align-items: center; justify-content: space-between;