This website requires JavaScript.
No known key found for this signature in database
GPG key ID:
4AEE18F83AFDEB23
16 changed files with
61 additions and
16 deletions
@ -25,6 +25,7 @@ pygmentsCodefencesGuessSyntax = true
readingTime = true
useHLJS = true
socialShare = true
showRelatedPosts = true
# gcse = "012345678901234567890:abcdefghijk" # Get your code from google.com/cse. Make sure to go to "Look and Feel" and change Layout to "Full Width" and Theme to "Classic"
#[[Params.bigimg]]
@ -62,3 +62,7 @@
translation : "Seu email"
- id : yourWebsite
translation : "Seu website"
# Related posts
- id : seeAlso
translation : "Veja também"
@ -63,4 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "Siehe auch"
@ -63,4 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "See also"
@ -62,3 +62,7 @@
translation : "Via retpoŝtadreso"
- id : yourWebsite
translation : "Via retpaĝaro"
# Related posts
- id : seeAlso
translation : "Vidu ankaŭ"
@ -63,5 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "Ver también"
@ -62,3 +62,7 @@
translation : "Votre addresse mail"
- id : yourWebsite
translation : "Votre site web"
# Related posts
- id : seeAlso
translation : "Voir également"
@ -63,4 +63,6 @@
- id : yourWebsite
translation : "Il tuo website"
# Related posts
- id : seeAlso
translation : "Guarda anche"
@ -63,6 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "も参照してください"
@ -63,4 +63,6 @@
- id : yourWebsite
translation : "Din webside"
# Related posts
- id : seeAlso
translation : "Se også"
@ -62,3 +62,7 @@
translation : "Jouw e-mailadres"
- id : yourWebsite
translation : "Jouw website"
# Related posts
- id : seeAlso
translation : "Zie ook"
@ -63,5 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "Zobacz też"
@ -63,6 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "Смотрите также"
@ -63,5 +63,6 @@
- id : yourWebsite
translation : "You website"
# Related posts
- id : seeAlso
translation : "也可以看看"
@ -21,6 +21,18 @@
< / ul >
< / section >
{{ end }}
{{ if .Site.Params.showRelatedPosts }}
{{ $related := .Site.RegularPages.Related . | first 3 }}
{{ with $related }}
< h4 class = "see-also" > {{ i18n "seeAlso" }}< / h4 >
< ul >
{{ range . }}
< li > < a href = "{{ .RelPermalink }}" > {{ .Title }}< / a > < / li >
{{ end }}
< / ul >
{{ end }}
{{ end }}
< / article >
{{ if ne .Type "page" }}
@ -742,3 +742,8 @@ div.splitbox div.right {
display : inline-block ;
float : left ; }
}
/* Related posts */
h4 . see-also {
margin-top : 20px
}