|
|
|
@ -6008,6 +6008,7 @@ |
|
|
|
|
</div> |
|
|
|
|
</article> |
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
|
|
<style> |
|
|
|
|
body #content #primary #post-networkbox a { |
|
|
|
|
text-decoration: underline; |
|
|
|
@ -6081,6 +6082,29 @@ |
|
|
|
|
</div> |
|
|
|
|
<div style="clear:both;padding-top:20px;"></div> |
|
|
|
|
</main><!-- #main --> |
|
|
|
|
<div style="display: flex; justify-content: space-between;padding-top: 20px;"> |
|
|
|
|
{{$pulen := len .PrevUrl}} |
|
|
|
|
{{ if ne $pulen 0 }} |
|
|
|
|
<div> |
|
|
|
|
<a href="{{.PrevUrl}}">Prev</a> |
|
|
|
|
</div> |
|
|
|
|
{{else}} |
|
|
|
|
<div style="pointer-events: none;color: gray"> |
|
|
|
|
Prev |
|
|
|
|
</div> |
|
|
|
|
{{ end }} |
|
|
|
|
<!-- 下一页 --> |
|
|
|
|
{{$nulen := len .NextUrl}} |
|
|
|
|
{{ if ne $nulen 0 }} |
|
|
|
|
<div> |
|
|
|
|
<a href="{{.NextUrl}}">Next</a> |
|
|
|
|
</div> |
|
|
|
|
{{else}} |
|
|
|
|
<div style="pointer-events: none;color: gray"> |
|
|
|
|
Next |
|
|
|
|
</div> |
|
|
|
|
{{ end }} |
|
|
|
|
</div> |
|
|
|
|
</div><!-- #primary --> |
|
|
|
|
<style> |
|
|
|
|
#secondary { |
|
|
|
|