Merge pull request #16 from mapitman/master
Changed header.html to use languageCode from config.toml instead of hard-coded to "ja"
This commit is contained in:
commit
03f2fe3df9
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
<head prefix="og: http://ogp.me/ns#">
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
|
||||
|
@ -1,4 +1,7 @@
|
||||
<nav class="pagination" role="navigation">
|
||||
{{ if or .HasPrev .HasNext }}
|
||||
<hr />
|
||||
{{ end }}
|
||||
{{if .HasPrev}}
|
||||
<a class="newer-posts" href="{{ .Prev.URL }}">« Newer Posts</a>
|
||||
{{end}}
|
||||
|
Loading…
Reference in New Issue
Block a user