update prev&next
@ -281,7 +281,7 @@ func (c *DocumentController) Read() {
|
||||
c.Data["Model"] = bookResult
|
||||
c.Data["Result"] = template.HTML(tree)
|
||||
c.Data["Title"] = doc.DocumentName
|
||||
c.Data["Content"] = template.HTML(doc.Release)
|
||||
c.Data["Content"] = template.HTML(doc.Release + "<div class='wiki-bottom-left'>上一篇: <a href='/docs/" + PrevPath + "' rel='prev'>" + PrevName + "</a><br />下一篇: <a href='/docs/" + NextPath + "' rel='next'>" + NextName + "</a><br /></div>")
|
||||
c.Data["ViewCount"] = doc.ViewCount
|
||||
c.Data["FoldSetting"] = "closed"
|
||||
if bookResult.Editor == EditorCherryMarkdown {
|
||||
|
1
uploads/.gitignore
vendored
@ -1 +0,0 @@
|
||||
# Created by .ignore support plugin (hsz.mobi)
|
Before Width: | Height: | Size: 372 KiB |
Before Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 367 KiB |
Before Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 230 KiB |
Before Width: | Height: | Size: 558 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 136 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 1.8 KiB |
@ -189,7 +189,6 @@
|
||||
<div class="article-content">
|
||||
<div class="article-body {{if eq .Model.Editor "markdown"}}markdown-body editormd-preview-container{{else}}editor-content{{end}}" id="page-content">
|
||||
{{.Content}}
|
||||
<!-- <div class="wiki-bottom-left">上一篇: <a href='/docs/{{.PrevPath}}' rel='prev'>{{.PrevName}}</a><br />下一篇: <a href='/docs/{{.NextPath}}' rel='next'>{{.NextName}}</a><br /></div> -->
|
||||
</div>
|
||||
|
||||
{{if .Model.IsDisplayComment}}
|
||||
@ -367,10 +366,6 @@ $(function () {
|
||||
if (!window.IS_DOCUMENT_INDEX && IS_DISPLAY_COMMENT) {
|
||||
pageClicked(-1, parseInt($('#doc_id').val()));
|
||||
}
|
||||
|
||||
$("div.wiki-bottom").after("<div class='wiki-bottom-left'>上一篇: <a href='/docs/{{.PrevPath}}' rel='prev'>{{.PrevName}}</a><br />下一篇: <a href='/docs/{{.NextPath}}' rel='next'>{{.NextName}}</a><br /></div>");
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
{{.Scripts}}
|
||||
|