-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Topic list migration, subforum migration fixes (#18)
* subforum headers: add missing wrapper, remove irrelevant jcink variable * add topic list header and rows html
- Loading branch information
1 parent
65b1c90
commit e789159
Showing
3 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
<div class="category-wrapper"> | ||
<div class="category-inner"> | ||
<div class="category-title"> | ||
<!-- |name_text| --> | ||
</div> | ||
<div class="category-title"></div> | ||
<div class="category-border"></div> | ||
<% FORUM_ROWS %> | ||
<div class="forum-row"><% FORUM_ROWS %></div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="category-wrapper"> | ||
<div class="category-inner"> | ||
<div class="category-title"><!-- |forum_name| --></div> | ||
<div class="category-border"></div> | ||
|
||
<div class="topic-row"><% ANNOUNCEMENTS %> <% TOPIC_ROWS %></div> | ||
</div> | ||
|
||
<!-- |mod_form_end| --> | ||
<!-- |forum_active| --> | ||
<!-- |sort_options| --> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<div class="topic-wrapper"> | ||
<div class="topic-title"> | ||
<!-- |prefix| --> | ||
<!-- |topic| --> | ||
</div> | ||
|
||
<div class="topic-info"> | ||
<div class="topic-desc"><!-- |topic_desc| --></div> | ||
<div class="topic-last-post-av"> | ||
<!-- |last_poster_avatar| --> | ||
</div> | ||
<div class="topic-last-post"> | ||
last post by: | ||
<!-- |last_poster| --> | ||
</div> | ||
<div class="topic-starter"> | ||
topic started by: | ||
<!-- |starter| --> | ||
</div> | ||
<div class="topic-pagination"> | ||
<!-- |pages| --> | ||
<div class="views-replies-flex"> | ||
<div class="views-replies"> | ||
<!-- |views| --> | ||
views | ||
</div> | ||
<br /> | ||
<div class="views-replies"> | ||
<!-- |replies_int| --> | ||
posts | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- |mod_checkbox| --> | ||
</div> |