From f919b8bd907a76efcb624eba30df539a9403d5ff Mon Sep 17 00:00:00 2001 From: Victor Lourme Date: Fri, 11 Dec 2020 16:33:02 +0100 Subject: [PATCH 01/31] feat(sidebar): add support for external avatar (#53) add [params.sidebar.avatar] section in config.toml, with 2 fields: local and src Migration guide: - Copy the old value of `params.sidebar.avatar` to `param.sidebar.avatar.src` - Set params.sidebar.avatar.local = true Co-authored-by: Jimmy Cai --- exampleSite/config.toml | 4 +++- layouts/partials/sidebar/left.html | 18 +++++++++++------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 3134043..59d57d0 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -21,8 +21,10 @@ DefaultContentLanguage = "en" # Theme i18n support [params.sidebar] emoji = "🍥" - avatar = "img/avatar.png" subtitle = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." + [params.sidebar.avatar] + local = true + src = "img/avatar.png" [params.article] math = false diff --git a/layouts/partials/sidebar/left.html b/layouts/partials/sidebar/left.html index 5081b7c..9205fa4 100644 --- a/layouts/partials/sidebar/left.html +++ b/layouts/partials/sidebar/left.html @@ -8,14 +8,18 @@
{{ with .Site.Params.sidebar.avatar }}
- {{ $avatar := resources.Get (.) }} - - {{ if $avatar }} - {{ $avatarResized := $avatar.Resize "300x300" }} - + {{ if not .local }} + {{ else }} - {{ errorf "Failed loading avatar from %q" . }} + {{ $avatar := resources.Get (.src) }} + + {{ if $avatar }} + {{ $avatarResized := $avatar.Resize "300x" }} + + {{ else }} + {{ errorf "Failed loading avatar from %q" . }} + {{ end }} {{ end }} {{ with $.Site.Params.sidebar.emoji }} From e1277f4e61b6576055303a317882f4f338b2e426 Mon Sep 17 00:00:00 2001 From: Rizki Prastyo <75569773+rizkiprastyo@users.noreply.github.com> Date: Fri, 11 Dec 2020 23:18:08 +0700 Subject: [PATCH 02/31] feat(i18n): add Indonesian translation (#64) --- i18n/id.toml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 i18n/id.toml diff --git a/i18n/id.toml b/i18n/id.toml new file mode 100644 index 0000000..fa0d8e3 --- /dev/null +++ b/i18n/id.toml @@ -0,0 +1,38 @@ +[toggleMenu] + other = "Tampilkan Menu" + +[relatedContents] + other = "Konten terkait" + +[lastUpdatedOn] + other = "Terakhir diperbarui pada" + +[widgetArchivesTitle] + other = "Arsip" + +[widgetArchivesMore] + other = "Lebih" + +[widgetTagCloudTitle] + other = "Tag" + +[notFoundTitle] + other = "Not Found" + +[notFoundSubtitle] + other = "Halaman ini tidak ada." + +[searchTitle] + other = "Cari" + +[searchPlaceholder] + other = "Ketik sesuatu..." + +[searchResultTitle] + other = "#PAGES_COUNT halaman (#TIME_SECONDS detik)" + +[footerBuiltWith] + other = "Dibangun dengan {{ .Generator }}" + +[footerDesignedBy] + other = "Tema {{ .Theme }} dirancang oleh {{ .DesignedBy }}" \ No newline at end of file From e9c1abac934739ee1757569446b36b5876a62834 Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Tue, 15 Dec 2020 10:59:52 +0100 Subject: [PATCH 03/31] refactor(config): use YAML instead of TOML (#65) * refactor(config): use YAML instead of TOML closes https://github.com/CaiJimmy/hugo-theme-stack/issues/62 * refactor(config.yaml): clear up * style(config): formatting & add i18n comment --- exampleSite/config.toml | 105 ------------------------------------- exampleSite/config.yaml | 113 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+), 105 deletions(-) delete mode 100644 exampleSite/config.toml create mode 100644 exampleSite/config.yaml diff --git a/exampleSite/config.toml b/exampleSite/config.toml deleted file mode 100644 index 59d57d0..0000000 --- a/exampleSite/config.toml +++ /dev/null @@ -1,105 +0,0 @@ -baseurl = "https://example.com" -languageCode = "en-us" -theme = "hugo-theme-stack" -paginate = 5 -title = "Example Site" -disqusShortname = "hugo-theme-stack" # Change it to your Disqus shortname before using -DefaultContentLanguage = "en" # Theme i18n support - -[permalinks] - post = "/p/:slug/" - page = "/:slug/" - -[params] - mainSections = ["post"] - featuredImageField = "image" - rssFullContent = true - - [params.dateFormat] - published = "Jan 02, 2006" - lastUpdated = "Jan 02, 2006 15:04 MST" - - [params.sidebar] - emoji = "🍥" - subtitle = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." - [params.sidebar.avatar] - local = true - src = "img/avatar.png" - - [params.article] - math = false - [params.article.license] - enabled = true - default = "Licensed under CC BY-NC-SA 4.0" - - [params.comments] - enabled = true - provider = "disqus" # Available: disqus, utterances - [params.comments.utterances] - repo = "" - issueTerm = "pathname" - label = "" # Optional - theme = "preferred-color-scheme" - - [params.widgets] - enabled = ['search', 'archives', 'tag-cloud'] - [params.widgets.archives] - limit = 5 - ### Archives page relative URL - path = "archives" - [params.widgets.tagCloud] - limit = 10 - - [params.opengraph] - [params.opengraph.twitter] - site = "" - card = "summary_large_image" - - [params.defaultImage] - [params.defaultImage.opengraph] - enabled = false - local = false - src = "" - -[menu] - [[menu.main]] - identifier = "home" - name = "Home" - url = "/" - weight = -100 - pre = "home" - [[menu.main]] - identifier = "about-cn" - name = "About" - url = "about" - weight = -90 - pre = "user" - [[menu.main]] - identifier = "archives" - name = "Archives" - url = "archives" - weight = -70 - pre = "archives" - [[menu.main]] - identifier = "search" - name = "Search" - url = "search" - weight = -60 - pre = "search" - -[related] - includeNewer = true - threshold = 60 - toLower = false - - [[related.indices]] - name = "tags" - weight = 100 - - [[related.indices]] - name = "categories" - weight = 200 - -[markup] - [markup.highlight] - noClasses = false diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml new file mode 100644 index 0000000..7367a49 --- /dev/null +++ b/exampleSite/config.yaml @@ -0,0 +1,113 @@ +baseurl: https://example.com +languageCode: en-us +theme: hugo-theme-stack +paginate: 5 +title: Example Site + +# Change it to your Disqus shortname before using +disqusShortname: hugo-theme-stack + +# Theme i18n support +# Available values: en, fr, id, ja, ko, pt-br, zh-cn +DefaultContentLanguage: en + +permalinks: + post: /p/:slug/ + page: /:slug/ + +params: + mainSections: + - post + featuredImageField: image + rssFullContent: true + + dateFormat: + published: Jan 02, 2006 + lastUpdated: Jan 02, 2006 15:04 MST + + sidebar: + emoji: 🍥 + subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit. + avatar: + local: true + src: img/avatar.png + + article: + math: false + license: + enabled: true + default: Licensed under CC BY-NC-SA 4.0 + + comments: + enabled: true + provider: disqus + utterances: + repo: + issueTerm: pathname + label: + theme: preferred-color-scheme + + widgets: + enabled: + - search + - archives + - tag-cloud + + archives: + limit: 5 + path: archives + + tagCloud: + limit: 10 + + opengraph: + twitter: + site: + card: summary_large_image + + defaultImage: + opengraph: + enabled: false + local: false + src: + +menu: + main: + - identifier: home + name: Home + url: / + weight: -100 + pre: home + + - identifier: about + name: About + url: about + weight: -90 + pre: user + + - identifier: archives + name: Archives + url: archives + weight: -70 + pre: archives + + - identifier: search + name: Search + url: search + weight: -60 + pre: search + +related: + includeNewer: true + threshold: 60 + toLower: false + indices: + - name: tags + weight: 100 + + - name: categories + weight: 200 + +markup: + highlight: + noClasses: false From d2057533233c480fde3c526d865cfb1276d6b4ef Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Sat, 19 Dec 2020 01:41:26 +0100 Subject: [PATCH 04/31] refactor(i18n): translation key renaming (#68) closes https://github.com/CaiJimmy/hugo-theme-stack/issues/63 --- i18n/en.toml | 41 ------------------ i18n/en.yaml | 42 +++++++++++++++++++ i18n/fr.toml | 38 ----------------- i18n/fr.yaml | 38 +++++++++++++++++ i18n/id.toml | 38 ----------------- i18n/id.yaml | 38 +++++++++++++++++ i18n/ja.toml | 23 ---------- i18n/ja.yaml | 24 +++++++++++ i18n/ko.toml | 38 ----------------- i18n/ko.yaml | 38 +++++++++++++++++ i18n/pt-BR.toml | 41 ------------------ i18n/pt-BR.yaml | 42 +++++++++++++++++++ i18n/zh-CN.toml | 32 -------------- i18n/zh-CN.yaml | 36 ++++++++++++++++ layouts/404.html | 4 +- layouts/_default/archives.html | 2 +- layouts/page/search.html | 6 +-- .../partials/article/components/footer.html | 2 +- .../article/components/related-contents.html | 2 +- layouts/partials/footer/footer.html | 4 +- layouts/partials/widget/archives.html | 4 +- layouts/partials/widget/search.html | 4 +- layouts/partials/widget/tag-cloud.html | 2 +- 23 files changed, 273 insertions(+), 266 deletions(-) delete mode 100644 i18n/en.toml create mode 100644 i18n/en.yaml delete mode 100644 i18n/fr.toml create mode 100644 i18n/fr.yaml delete mode 100644 i18n/id.toml create mode 100644 i18n/id.yaml delete mode 100644 i18n/ja.toml create mode 100644 i18n/ja.yaml delete mode 100644 i18n/ko.toml create mode 100644 i18n/ko.yaml delete mode 100644 i18n/pt-BR.toml create mode 100644 i18n/pt-BR.yaml delete mode 100644 i18n/zh-CN.toml create mode 100644 i18n/zh-CN.yaml diff --git a/i18n/en.toml b/i18n/en.toml deleted file mode 100644 index 1261a18..0000000 --- a/i18n/en.toml +++ /dev/null @@ -1,41 +0,0 @@ -[toggleMenu] - other = "Toggle Menu" - -[relatedContents] - other = "Related contents" - -[lastUpdatedOn] - other ="Last updated on" - -[widgetArchivesTitle] - other = "Archives" - -[widgetArchivesMore] - other = "More" - -[widgetTagCloudTitle] - other = "Tags" - -[categoriesTitle] - other = "Categories" - -[notFoundTitle] - other = "Not Found" - -[notFoundSubtitle] - other = "This page does not exist." - -[searchTitle] - other = "Search" - -[searchPlaceholder] - other = "Type something..." - -[searchResultTitle] - other = "#PAGES_COUNT pages (#TIME_SECONDS seconds)" - -[footerBuiltWith] - other = "Built with {{ .Generator }}" - -[footerDesignedBy] - other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}" diff --git a/i18n/en.yaml b/i18n/en.yaml new file mode 100644 index 0000000..1c0fdd8 --- /dev/null +++ b/i18n/en.yaml @@ -0,0 +1,42 @@ +toggleMenu: + other: Toggle Menu + +archives: + categories: + other: Categories + +article: + relatedContents: + other: Related contents + lastUpdatedOn: + other: Last updated on + +notFound: + title: + other: Not Found + subtitle: + other: This page does not exist. + +widget: + archives: + title: + other: Archives + more: + other: More + tagCloud: + title: + other: Tags + +search: + title: + other: Search + placeholder: + other: Type something... + resultTitle: + other: "#PAGES_COUNT pages (#TIME_SECONDS seconds)" + +footer: + builtWith: + other: Built with {{ .Generator }} + designedBy: + other: Theme {{ .Theme }} designed by {{ .DesignedBy }} diff --git a/i18n/fr.toml b/i18n/fr.toml deleted file mode 100644 index 03c4efa..0000000 --- a/i18n/fr.toml +++ /dev/null @@ -1,38 +0,0 @@ -[toggleMenu] - other = "Afficher le menu" - -[relatedContents] - other = "Contenus liés" - -[lastUpdatedOn] - other = "Dernière mise à jour le" - -[widgetArchivesTitle] - other = "Archives" - -[widgetArchivesMore] - other = "Autres" - -[widgetTagCloudTitle] - other = "Mots clés" - -[notFoundTitle] - other = "Page non trouvée" - -[notFoundSubtitle] - other = "Cette page n'existe pas." - -[searchTitle] - other = "Rechercher" - -[searchPlaceholder] - other = "Cherchez un article, une publication, etc." - -[searchResultTitle] - other = "#PAGES_COUNT pages (#TIME_SECONDS secondes)" - -[footerBuiltWith] - other = "Généré avec {{ .Generator }}" - -[footerDesignedBy] - other = "Thème {{ .Theme }} conçu par {{ .DesignedBy }}" \ No newline at end of file diff --git a/i18n/fr.yaml b/i18n/fr.yaml new file mode 100644 index 0000000..59cc111 --- /dev/null +++ b/i18n/fr.yaml @@ -0,0 +1,38 @@ +toggleMenu: + other: Afficher le menu + +article: + relatedContents: + other: Contenus liés + lastUpdatedOn: + other: Dernière mise à jour le + +notFound: + title: + other: Page non trouvée + subtitle: + other: Cette page n'existe pas. + +widget: + archives: + title: + other: Archives + more: + other: Autres + tagCloud: + title: + other: Mots clés + +search: + title: + other: Rechercher + placeholder: + other: Cherchez un article, une publication, etc. + resultTitle: + other: "#PAGES_COUNT pages (#TIME_SECONDS secondes)" + +footer: + builtWith: + other: Généré avec {{ .Generator }} + designedBy: + other: Thème {{ .Theme }} conçu par {{ .DesignedBy }} diff --git a/i18n/id.toml b/i18n/id.toml deleted file mode 100644 index fa0d8e3..0000000 --- a/i18n/id.toml +++ /dev/null @@ -1,38 +0,0 @@ -[toggleMenu] - other = "Tampilkan Menu" - -[relatedContents] - other = "Konten terkait" - -[lastUpdatedOn] - other = "Terakhir diperbarui pada" - -[widgetArchivesTitle] - other = "Arsip" - -[widgetArchivesMore] - other = "Lebih" - -[widgetTagCloudTitle] - other = "Tag" - -[notFoundTitle] - other = "Not Found" - -[notFoundSubtitle] - other = "Halaman ini tidak ada." - -[searchTitle] - other = "Cari" - -[searchPlaceholder] - other = "Ketik sesuatu..." - -[searchResultTitle] - other = "#PAGES_COUNT halaman (#TIME_SECONDS detik)" - -[footerBuiltWith] - other = "Dibangun dengan {{ .Generator }}" - -[footerDesignedBy] - other = "Tema {{ .Theme }} dirancang oleh {{ .DesignedBy }}" \ No newline at end of file diff --git a/i18n/id.yaml b/i18n/id.yaml new file mode 100644 index 0000000..31cea39 --- /dev/null +++ b/i18n/id.yaml @@ -0,0 +1,38 @@ +toggleMenu: + other: Tampilkan Menu + +article: + relatedContents: + other: Konten terkait + lastUpdatedOn: + other: Terakhir diperbarui pada + +notFound: + title: + other: Not Found + subtitle: + other: Halaman ini tidak ada. + +widget: + archives: + title: + other: Arsip + more: + other: Lebih + tagCloud: + title: + other: Tag + +search: + title: + other: Cari + placeholder: + other: Ketik sesuatu... + resultTitle: + other: "#PAGES_COUNT halaman (#TIME_SECONDS detik)" + +footer: + builtWith: + other: Dibangun dengan {{ .Generator }} + designedBy: + other: Tema {{ .Theme }} dirancang oleh {{ .DesignedBy }} diff --git a/i18n/ja.toml b/i18n/ja.toml deleted file mode 100644 index 0581364..0000000 --- a/i18n/ja.toml +++ /dev/null @@ -1,23 +0,0 @@ -[toggleMenu] - other = "メニューを開く・閉じる" - -[relatedContents] - other = "関連するコンテンツ" - -[lastUpdatedOn] - other = "最終更新" - -[widgetArchivesTitle] - other = "アーカイブ" - -[widgetArchivesMore] - other = "さらに見る" - -[widgetTagCloudTitle] - other = "タグ" - -[notFoundTitle] - other = "404 Not Found" - -[notFoundSubtitle] - other = "指定されたページは存在しません。" \ No newline at end of file diff --git a/i18n/ja.yaml b/i18n/ja.yaml new file mode 100644 index 0000000..e982ce3 --- /dev/null +++ b/i18n/ja.yaml @@ -0,0 +1,24 @@ +toggleMenu: + other: メニューを開く・閉じる + +article: + relatedContents: + other: 関連するコンテンツ + lastUpdatedOn: + other: 最終更新 + +notFound: + title: + other: 404 Not Found + subtitle: + other: 指定されたページは存在しません。 + +widget: + archives: + title: + other: アーカイブ + more: + other: さらに見る + tagCloud: + title: + other: タグ diff --git a/i18n/ko.toml b/i18n/ko.toml deleted file mode 100644 index 099477c..0000000 --- a/i18n/ko.toml +++ /dev/null @@ -1,38 +0,0 @@ -[toggleMenu] - other = "메뉴 여닫기" - -[relatedContents] - other = "관련 글" - -[lastUpdatedOn] - other ="마지막 수정: " - -[widgetArchivesTitle] - other = "보관함" - -[widgetArchivesMore] - other = "더보기" - -[widgetTagCloudTitle] - other = "태그" - -[notFoundTitle] - other = "찾을 수 없음" - -[notFoundSubtitle] - other = "페이지를 찾을 수 없습니다." - -[searchTitle] - other = "검색" - -[searchPlaceholder] - other = "검색어를 입력하세요..." - -[searchResultTitle] - other = "#PAGES_COUNT 페이지 (#TIME_SECONDS 초)" - -[footerBuiltWith] - other = "{{ .Generator }}로 만듦" - -[footerDesignedBy] - other = "{{ .DesignedBy }}의 {{ .Theme }} 테마 사용 중" \ No newline at end of file diff --git a/i18n/ko.yaml b/i18n/ko.yaml new file mode 100644 index 0000000..d9916cd --- /dev/null +++ b/i18n/ko.yaml @@ -0,0 +1,38 @@ +toggleMenu: + other: 메뉴 여닫기 + +article: + relatedContents: + other: 관련 글 + lastUpdatedOn: + other: "마지막 수정: " + +notFound: + title: + other: 찾을 수 없음 + subtitle: + other: 페이지를 찾을 수 없습니다. + +widget: + archives: + title: + other: 보관함 + more: + other: 더보기 + tagCloud: + title: + other: 태그 + +search: + title: + other: 검색 + placeholder: + other: 검색어를 입력하세요... + resultTitle: + other: "#PAGES_COUNT 페이지 (#TIME_SECONDS 초)" + +footer: + builtWith: + other: "{{ .Generator }}로 만듦" + designedBy: + other: "{{ .DesignedBy }}의 {{ .Theme }} 테마 사용 중" diff --git a/i18n/pt-BR.toml b/i18n/pt-BR.toml deleted file mode 100644 index 4f7436f..0000000 --- a/i18n/pt-BR.toml +++ /dev/null @@ -1,41 +0,0 @@ -[toggleMenu] - other = "Alternar Menu" - -[relatedContents] - other = "Conteúdos Relacionados" - -[lastUpdatedOn] - other ="Última atualização em" - -[widgetArchivesTitle] - other = "Arquivos" - -[widgetArchivesMore] - other = "Mais" - -[widgetTagCloudTitle] - other = "Tags" - -[categoriesTitle] - other = "Categorias" - -[notFoundTitle] - other = "Não Encontrado" - -[notFoundSubtitle] - other = "Esta página não existe." - -[searchTitle] - other = "Busca" - -[searchPlaceholder] - other = "Digite algo..." - -[searchResultTitle] - other = "#PAGES_COUNT páginas (#TIME_SECONDS segundos)" - -[footerBuiltWith] - other = "Criado com {{ .Generator }}" - -[footerDesignedBy] - other = "Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }}" \ No newline at end of file diff --git a/i18n/pt-BR.yaml b/i18n/pt-BR.yaml new file mode 100644 index 0000000..5380c68 --- /dev/null +++ b/i18n/pt-BR.yaml @@ -0,0 +1,42 @@ +toggleMenu: + other: Alternar Menu + +archives: + categories: + other: Categorias + +article: + relatedContents: + other: Conteúdos Relacionados + lastUpdatedOn: + other: Última atualização em + +notFound: + title: + other: Não Encontrado + subtitle: + other: Esta página não existe. + +widget: + archives: + title: + other: Arquivos + more: + other: Mais + tagCloud: + title: + other: Tags + +search: + title: + other: Busca + placeholder: + other: Digite algo... + resultTitle: + other: "#PAGES_COUNT páginas (#TIME_SECONDS segundos)" + +footer: + builtWith: + other: Criado com {{ .Generator }} + designedBy: + other: Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }} diff --git a/i18n/zh-CN.toml b/i18n/zh-CN.toml deleted file mode 100644 index e589330..0000000 --- a/i18n/zh-CN.toml +++ /dev/null @@ -1,32 +0,0 @@ -[toggleMenu] - other = "切换菜单" - -[relatedContents] - other = "相关文章" - -[lastUpdatedOn] - other ="最后更新于" - -[widgetArchivesTitle] - other = "归档" - -[widgetArchivesMore] - other = "更多" - -[widgetTagCloudTitle] - other = "标签云" - -[notFoundTitle] - other = "404 错误" - -[notFoundSubtitle] - other = "页面不存在" - -[searchTitle] - other = "搜索" - -[searchPlaceholder] - other = "输入关键词..." - -[searchResultTitle] - other = "#PAGES_COUNT 个结果 (用时 #TIME_SECONDS 秒)" \ No newline at end of file diff --git a/i18n/zh-CN.yaml b/i18n/zh-CN.yaml new file mode 100644 index 0000000..78615bf --- /dev/null +++ b/i18n/zh-CN.yaml @@ -0,0 +1,36 @@ +toggleMenu: + other: 切换菜单 + +archives: + categories: + other: 分类 + +article: + relatedContents: + other: 相关文章 + lastUpdatedOn: + other: 最后更新于 + +notFound: + title: + other: 404 错误 + subtitle: + other: 页面不存在 + +widget: + archives: + title: + other: 归档 + more: + other: 更多 + tagCloud: + title: + other: 标签云 + +search: + title: + other: 搜索 + placeholder: + other: 输入关键词... + resultTitle: + other: "#PAGES_COUNT 个结果 (用时 #TIME_SECONDS 秒)" diff --git a/layouts/404.html b/layouts/404.html index dd5e49d..b89d2b6 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -1,7 +1,7 @@ {{ define "main" }}
-

{{ T "notFoundTitle" }}

-

{{ T "notFoundSubtitle" }}

+

{{ T "notFound.title" }}

+

{{ T "notFound.subtitle" }}

{{ partialCached "footer/footer" . }} {{ end }} \ No newline at end of file diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html index 0071565..1a681e9 100644 --- a/layouts/_default/archives.html +++ b/layouts/_default/archives.html @@ -2,7 +2,7 @@ {{ define "main" }} {{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }} {{ if $categories }} -

{{ T "categoriesTitle" }}

+

{{ T "archives.categories" }}

{{ range $categories }} diff --git a/layouts/page/search.html b/layouts/page/search.html index 6078ac1..259d398 100644 --- a/layouts/page/search.html +++ b/layouts/page/search.html @@ -7,8 +7,8 @@ {{ define "main" }}

- - + +