Hugo theme.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
363 B

  1. {{ define "main" }}
  2. {{ $.Scratch.Set "fa_icon" "fa-tag" }}
  3. {{ if isset .Params "fa_icon" }}
  4. {{ $.Scratch.Set "fa_icon" .Params.fa_icon }}
  5. {{ end }}
  6. <h1><!--<i class="fa {{ $.Scratch.Get "fa_icon" }}"></i>-->{{ .Title }}</h1>
  7. {{ range .Paginator.Pages }}
  8. {{ .Render "li" }}
  9. {{ end }}
  10. {{ template "_internal/pagination.html" . }}
  11. {{ end }}