github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/templates/topic_alt_inner.html (about) 1 <main id="topicPage"> 2 3 {{if gt .Page 1}}<link rel="prev"href="{{.Topic.Link}}?page={{subtract .Page 1}}">{{end}} 4 {{if ne .LastPage .Page}}<link rel="prerender next"href="{{.Topic.Link}}?page={{add .Page 1}}">{{end}} 5 {{if not .CurrentUser.Loggedin}}<link rel="canonical"href="//{{.Site.URL}}{{.Topic.Link}}{{if gt .Page 1}}?page={{.Page}}{{end}}">{{end}} 6 7 <div {{scope "topic_title_block"}} class="rowblock rowhead topic_block"aria-label="{{lang "topic.topic_info_aria"}}"> 8 <div class="rowitem topic_item{{if .Topic.Sticky}} topic_sticky_head{{else if .Topic.IsClosed}} topic_closed_head{{end}}"> 9 <h1 class='topic_name hide_on_edit'title='{{.Topic.Title}}'>{{.Topic.Title}}</h1> 10 <span class="topic_name_forum_sep hide_on_edit"> - </span> 11 <a href="{{.Forum.Link}}"class="topic_forum hide_on_edit">{{.Forum.Name}}</a> 12 {{/** TODO: Does this need to be guarded by a permission? It's only visible in edit mode anyway, which can't be triggered, if they don't have the permission **/}} 13 {{if .CurrentUser.Loggedin}} 14 {{if not .Topic.IsClosed or .CurrentUser.Perms.CloseTopic}} 15 {{if .CurrentUser.Perms.EditTopic}} 16 <form id="edit_topic_form"action='/topic/edit/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}'method="post"></form> 17 <input form="edit_topic_form"class='show_on_edit topic_name_input'name="topic_name"value='{{.Topic.Title}}'type="text"aria-label="{{lang "topic.title_input_aria"}}"> 18 <button form="edit_topic_form"name="topic-button"class="formbutton show_on_edit submit_edit">{{lang "topic.update_button"}}</button> 19 {{end}} 20 {{end}} 21 {{end}} 22 <span class="topic_view_count hide_on_edit">{{.Topic.ViewCount}}</span> 23 {{/** TODO: Inline this CSS **/}} 24 {{if .Topic.IsClosed}}<span class='username hide_on_micro topic_status_e topic_status_closed hide_on_edit'title='{{lang "status.closed_tooltip"}}'aria-label='{{lang "topic.status_closed_aria"}}'>🔒︎</span>{{end}} 25 </div> 26 </div> 27 28 <div class="rowblock post_container"> 29 {{if .Poll}}{{template "topic_alt_poll.html" . }}{{end}} 30 <article {{scope "opening_post"}} itemscope itemtype="http://schema.org/CreativeWork"class="rowitem passive deletable_block editable_parent post_item top_post{{if .Topic.Attachments}} has_attachs{{end}}"aria-label="{{lang "topic.opening_post_aria"}}"> 31 {{template "topic_alt_userinfo.html" .Topic }} 32 <div class="content_container"> 33 <div class="hide_on_edit topic_content user_content"itemprop="text">{{.Topic.ContentHTML}}</div> 34 {{if .CurrentUser.Loggedin}}<textarea name="topic_content"class="show_on_edit topic_content_input edit_source">{{.Topic.Content}}</textarea> 35 36 {{if .CurrentUser.Perms.EditTopic}} 37 <div class="show_on_edit attach_edit_bay"type="topic"id="{{.Topic.ID}}"> 38 {{range .Topic.Attachments}} 39 <div class="attach_item attach_item_item{{if .Image}} attach_image_holder{{end}}"> 40 {{if .Image}}<img src="//{{$.Header.Site.URL}}/attachs/{{.Path}}?sid={{.SectionID}}&stype=forums"height=24 width=24>{{end}} 41 <span class="attach_item_path"aid="{{.ID}}"fullPath="//{{$.Header.Site.URL}}/attachs/{{.Path}}">{{.Path}}</span> 42 <button class="attach_item_select">{{lang "topic.select_button_text"}}</button> 43 <button class="attach_item_copy">{{lang "topic.copy_button_text"}}</button> 44 </div> 45 {{end}} 46 <div class="attach_item attach_item_buttons"> 47 {{if .CurrentUser.Perms.UploadFiles}} 48 <input name="upload_files"id="upload_files_op"multiple type="file"class="auto_hide"> 49 <label for="upload_files_op"class="formbutton add_file_button">{{lang "topic.upload_button_text"}}</label>{{end}} 50 <button class="attach_item_delete formbutton">{{lang "topic.delete_button_text"}}</button> 51 </div> 52 </div> 53 54 {{end}}{{end}} 55 <div class="controls button_container{{if .Topic.LikeCount}} has_likes{{end}}"> 56 <div class="action_button_left"> 57 {{if .CurrentUser.Loggedin}} 58 {{if .CurrentUser.Perms.LikeItem}}{{if ne .CurrentUser.ID .Topic.CreatedBy}} 59 {{if .Topic.Liked}}<a href="/topic/unlike/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}"class="action_button like_item remove_like"aria-label="{{lang "topic.unlike_aria"}}"data-action="unlike"></a>{{else}}<a href="/topic/like/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}"class="action_button like_item add_like"aria-label="{{lang "topic.like_aria"}}"data-action="like"></a>{{end}} 60 {{end}}{{end}} 61 <a href=""class="action_button quote_item"aria-label="{{lang "topic.quote_aria"}}"data-action="quote"></a> 62 {{if not .Topic.IsClosed or .CurrentUser.Perms.CloseTopic}} 63 {{if .CurrentUser.Perms.EditTopic}}<a href="/topic/edit/{{.Topic.ID}}"class="action_button open_edit"aria-label="{{lang "topic.edit_aria"}}"data-action="edit"></a>{{end}} 64 {{end}} 65 {{if .Topic.Deletable}}<a href="/topic/delete/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}"class="action_button delete_item"aria-label="{{lang "topic.delete_aria"}}"data-action="delete"></a>{{end}} 66 {{if .CurrentUser.Perms.CloseTopic}} 67 {{if .Topic.IsClosed}}<a href='/topic/unlock/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}'class="action_button unlock_item"data-action="unlock"aria-label="{{lang "topic.unlock_aria"}}"></a>{{else}}<a href='/topic/lock/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}'class="action_button lock_item"data-action="lock"aria-label="{{lang "topic.lock_aria"}}"></a>{{end}}{{end}} 68 {{if .CurrentUser.Perms.PinTopic}} 69 {{if .Topic.Sticky}}<a href='/topic/unstick/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}'class="action_button unpin_item"data-action="unpin"aria-label="{{lang "topic.unpin_aria"}}"></a>{{else}}<a href='/topic/stick/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}'class="action_button pin_item"data-action="pin"aria-label="{{lang "topic.pin_aria"}}"></a>{{end}}{{end}} 70 {{if .CurrentUser.Perms.ViewIPs}}<a href="/users/ips/?ip={{.Topic.IP}}"title="{{lang "topic.ip_full_tooltip"}}" class="action_button ip_item_button hide_on_big"aria-label="{{lang "topic.ip_full_aria"}}"data-action="ip"></a>{{end}} 71 <a href="/report/submit/{{.Topic.ID}}?s={{.CurrentUser.Session}}&type=topic"class="action_button report_item"aria-label="{{lang "topic.report_aria"}}"data-action="report"></a> 72 <a href="#"class="action_button button_menu"></a> 73 {{end}} 74 </div> 75 <div class="action_button_right"> 76 <a class="action_button like_count hide_on_micro"aria-label="{{lang "topic.like_count_aria"}}">{{.Topic.LikeCount}}</a> 77 <a class="action_button created_at hide_on_mobile"title="{{abstime .Topic.CreatedAt}}">{{reltime .Topic.CreatedAt}}</a> 78 {{if .CurrentUser.Perms.ViewIPs}}<a href="/users/ips/?ip={{.Topic.IP}}"title="{{lang "topic.ip_full_tooltip"}}"class="action_button ip_item hide_on_mobile"aria-hidden="true">{{.Topic.IP}}</a>{{end}} 79 </div> 80 </div> 81 </div><div style="clear:both;"></div> 82 </article> 83 {{template "topic_alt_posts.html" . }} 84 </div> 85 {{template "paginator.html" . }} 86 87 {{if .CurrentUser.Loggedin}} 88 {{if .CurrentUser.Perms.CreateReply}} 89 {{if not .Topic.IsClosed or .CurrentUser.Perms.CloseTopic}} 90 {{template "topic_alt_quick_reply.html" . }} 91 {{end}} 92 {{end}} 93 {{end}} 94 95 </main>