2016-12-02 07:38:54 +00:00
{{template "header.html" . }}
2017-12-27 23:38:37 +00:00
< main itemscope itemtype = "http://schema.org/ItemList" >
2017-08-20 09:39:02 +00:00
2017-10-21 00:27:47 +00:00
< div class = "rowblock rowhead topic_list_title_block" >
2017-12-27 23:38:37 +00:00
< div class = "rowitem topic_list_title{{if ne .CurrentUser.ID 0}} has_opt{{end}}" > < h1 itemprop = "name" > All Topics< / h1 > < / div >
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
{{if ne .CurrentUser.ID 0}}
{{if .ForumList}}
2017-10-30 09:57:08 +00:00
< div class = "pre_opt auto_hide" > < / div >
2017-10-21 00:27:47 +00:00
< div class = "opt create_topic_opt" title = "Create Topic" aria-label = "Create a topic" > < a class = "create_topic_link" href = "/topics/create/" > < / a > < / div >
{{/** TODO: Add a permissions check for this **/}}
< div class = "opt mod_opt" title = "Moderate" >
2017-12-10 03:43:30 +00:00
< a class = "moderate_link" href = "#" aria-label = "Moderate Posts" > < / a >
2017-10-21 00:27:47 +00:00
< / div >
{{else}}< div class = "opt locked_opt" title = "You don't have the permissions needed to create a topic" aria-label = "You don't have the permissions needed to make a topic anywhere" > < a > < / a > < / div > {{end}}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< div style = "clear: both;" > < / div >
{{end}}
2016-12-02 07:38:54 +00:00
< / div >
2017-10-30 09:57:08 +00:00
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
{{if ne .CurrentUser.ID 0}}
2017-10-30 09:57:08 +00:00
< div class = "mod_floater auto_hide" >
< form method = "post" >
< div class = "mod_floater_head" >
< span > What do you want to do with these 18 topics?< / span >
< / div >
< div class = "mod_floater_body" >
< select class = "mod_floater_options" >
< option val = "delete" > Delete them< / option >
< option val = "lock" > Lock them< / option >
< / select >
< button class = "mod_floater_submit" > Run< / button >
< / div >
< / form >
< / div >
{{if .ForumList}}
2017-10-21 00:27:47 +00:00
< div class = "rowblock topic_create_form quick_create_form" style = "display: none;" aria-label = "Quick Topic Form" >
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< form name = "topic_create_form_form" id = "topic_create_form_form" enctype = "multipart/form-data" action = "/topic/create/submit/" method = "post" > < / form >
2017-12-22 03:32:23 +00:00
< img class = "little_row_avatar" src = "{{.CurrentUser.Avatar}}" height = "64" alt = "Your Avatar" title = "Your Avatar" / >
2017-10-30 09:57:08 +00:00
< div class = "main_form" >
2017-11-02 02:52:21 +00:00
< div class = "topic_meta" >
< div class = "formrow topic_board_row real_first_child" >
< div class = "formitem" > < select form = "topic_create_form_form" id = "topic_board_input" name = "topic-board" >
{{range .ForumList}}< option { { if eq . ID $ . DefaultForum } } selected { { end } } value = "{{.ID}}" > {{.Name}}< / option > {{end}}
< / select > < / div >
< / div >
< div class = "formrow topic_name_row" >
< div class = "formitem" >
< input form = "topic_create_form_form" name = "topic-name" placeholder = "What's up?" required >
< / div >
< / div >
2017-10-30 09:57:08 +00:00
< / div >
2017-11-02 02:52:21 +00:00
< div class = "formrow topic_content_row" >
2017-10-30 09:57:08 +00:00
< div class = "formitem" >
2017-11-02 02:52:21 +00:00
< textarea form = "topic_create_form_form" id = "input_content" name = "topic-content" placeholder = "Insert post here" required > < / textarea >
2017-10-30 09:57:08 +00:00
< / div >
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< / div >
2017-11-02 02:52:21 +00:00
< div class = "formrow quick_button_row" >
< div class = "formitem" >
< button form = "topic_create_form_form" class = "formbutton" > Create Topic< / button >
{{if .CurrentUser.Perms.UploadFiles}}
< input name = "upload_files" form = "topic_create_form_form" id = "upload_files" multiple type = "file" style = "display: none;" / >
< label for = "upload_files" class = "formbutton add_file_button" > Add File< / label >
< div id = "upload_file_dock" > < / div > {{end}}
< button class = "formbutton close_form" > Cancel< / button >
< / div >
2017-10-30 09:57:08 +00:00
< / div >
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
< / div >
< / div >
{{end}}
{{end}}
< div id = "topic_list" class = "rowblock topic_list" aria-label = "A list containing topics from every forum" >
2017-10-30 09:57:08 +00:00
{{range .TopicList}}< div class = "topic_row" data-tid = "{{.ID}}" >
2017-10-12 03:24:14 +00:00
< div class = "rowitem topic_left passive datarow {{if .Sticky}}topic_sticky{{else if .IsClosed}}topic_closed{{end}}" >
2017-10-21 00:27:47 +00:00
< span class = "selector" > < / span >
2017-12-22 03:32:23 +00:00
< a href = "{{.Creator.Link}}" > < img src = "{{.Creator.Avatar}}" height = "64" alt = "{{.Creator.Name}}'s Avatar" title = "{{.Creator.Name}}'s Avatar" / > < / a >
2017-10-12 03:24:14 +00:00
< span class = "topic_inner_left" >
2017-12-27 23:38:37 +00:00
< a class = "rowtopic" href = "{{.Link}}" itemprop = "itemListElement" > < span > {{.Title}}< / span > < / a > {{if .ForumName}}< a class = "rowsmall parent_forum" href = "{{.ForumLink}}" > {{.ForumName}}< / a > {{end}}
2017-10-12 03:24:14 +00:00
< br / > < a class = "rowsmall starter" href = "{{.Creator.Link}}" > {{.Creator.Name}}< / a >
2017-09-10 16:57:22 +00:00
{{/** TODO: Avoid the double '|' when both .IsClosed and .Sticky are set to true. We could probably do this with CSS **/}}
2017-09-03 04:50:31 +00:00
{{if .IsClosed}}< span class = "rowsmall topic_status_e topic_status_closed" title = "Status: Closed" > | 🔒 & #xFE0E< / span > {{end}}
2017-08-06 15:22:18 +00:00
{{if .Sticky}}< span class = "rowsmall topic_status_e topic_status_sticky" title = "Status: Pinned" > | 📍 & #xFE0E< / span > {{end}}
< / span >
2017-10-12 03:24:14 +00:00
< span class = "topic_inner_right rowsmall" style = "float: right;" >
2017-10-21 00:27:47 +00:00
< span class = "replyCount" > {{.PostCount}}< / span > < br / >
< span class = "likeCount" > {{.LikeCount}}< / span >
2017-10-12 03:24:14 +00:00
< / span >
2017-08-06 15:22:18 +00:00
< / div >
2017-10-12 03:24:14 +00:00
< div class = "rowitem topic_right passive datarow {{if .Sticky}}topic_sticky{{else if .IsClosed}}topic_closed{{end}}" >
2017-12-22 03:32:23 +00:00
< a href = "{{.LastUser.Link}}" > < img src = "{{.LastUser.Avatar}}" height = "64" alt = "{{.LastUser.Name}}'s Avatar" title = "{{.LastUser.Name}}'s Avatar" / > < / a >
2017-08-06 15:22:18 +00:00
< span >
< a href = "{{.LastUser.Link}}" class = "lastName" style = "font-size: 14px;" > {{.LastUser.Name}}< / a > < br >
2017-10-21 00:27:47 +00:00
< span class = "rowsmall lastReplyAt" > {{.RelativeLastReplyAt}}< / span >
2017-06-05 11:57:27 +00:00
< / span >
2016-12-21 02:30:32 +00:00
< / div >
2017-10-12 03:24:14 +00:00
< / div > {{else}}< div class = "rowitem passive" > There aren't any topics yet.{{if .CurrentUser.Perms.CreateTopic}} < a href = "/topics/create/" > Start one?< / a > {{end}}< / div > {{end}}
2016-12-02 07:38:54 +00:00
< / div >
2017-08-20 09:39:02 +00:00
< / main >
2017-06-05 11:57:27 +00:00
{{template "footer.html" . }}