feat: use latex hugo template
This commit is contained in:
parent
1d12f5614d
commit
9004c27ceb
56 changed files with 1666 additions and 2 deletions
25
layouts/_default/single.html
Normal file
25
layouts/_default/single.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{{ define "main" }}
|
||||
<div class="container" role="main">
|
||||
<article class="article" class="blog-post">
|
||||
<div class="postmeta">
|
||||
{{ partial "postmeta.html" . }}
|
||||
</div>
|
||||
<br>
|
||||
{{ partial "toc.html" . }}
|
||||
|
||||
{{ if .Params.tags }}
|
||||
<div class="blog-tags">
|
||||
{{ range .Params.tags }}
|
||||
<a href="{{ (urlize (printf "tags/%s/" .)) | absLangURL }}">{{ . }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</article>
|
||||
{{ if and (gt .WordCount 400) (.Param "backtotop") }}
|
||||
{{ partial "backtotop.html" . }}
|
||||
<button onclick="topFunction()" id="backtotopButton">
|
||||
<i class="fa fa-angle-up"></i>
|
||||
</button>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue