Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i18n/pl.toml25
-rw-r--r--layouts/partials/css/owlCarousel.html2
-rw-r--r--layouts/partials/head/css.html4
3 files changed, 28 insertions, 3 deletions
diff --git a/i18n/pl.toml b/i18n/pl.toml
new file mode 100644
index 0000000..d344b2c
--- /dev/null
+++ b/i18n/pl.toml
@@ -0,0 +1,25 @@
+[404_title]
+ other = "404"
+[404_description]
+ other = "Oops! Ta strona nie istnieje! Albo trafiłeś na błąd {{ with .Site.Params.email }} (w takim wypadku, [powiadom mnie](mailto:{{ . }}) ) {{ end }} albo próbujesz wejść na stronę, której nie ma."
+[index_projects_allProjects]
+ other = "Wszystkie projekty"
+[index_blog_latestPosts]
+ other = "Ostatnie posty"
+[index_blog_allPosts]
+ other = "Wszystkie posty"
+[index_blog_readMore]
+ other = "Więcej"
+[index_currentTime]
+ other = "Mój lokalny czas to"
+[nav_backToSection]
+ other = "Wróć do {{ .Title }}"
+[nav_main]
+ other = "główna"
+[blog_readingTime]
+ one = "{{ .Count }} minut"
+ other = "{{ .Count }} minut"
+[blog_shareThis]
+ other = "Podziel się"
+[footer_text]
+ other = "[**Introduction**](https://github.com/vickylai/hugo-theme-introduction/) szablon dla [Hugo](http://gohugo.io/). Stworzony z [<i class=\"fa fa-heart\"></i> i <i class=\"fa fa-coffee\"></i>](https://vickylai.com) przez społeczność open source."
diff --git a/layouts/partials/css/owlCarousel.html b/layouts/partials/css/owlCarousel.html
index d42e685..2111705 100644
--- a/layouts/partials/css/owlCarousel.html
+++ b/layouts/partials/css/owlCarousel.html
@@ -1,4 +1,4 @@
{{ $owlCarousel := resources.Get "vendor/owlCarousel/owl.carousel.min.css" }}
{{ $owlCarouselTheme := resources.Get "vendor/owlCarousel/owl.theme.default.min.css" }}
{{ $owlCarouselBundle := slice $owlCarousel $owlCarouselTheme | resources.Concat "/styles/owlCarousel.min.css" | fingerprint }}
-<link rel="stylesheet" href="{{ $owlCarouselBundle.Permalink }}" integrity="{{ $owlCarouselBundle.Data.Integrity }}" media="screen">
+<link rel="stylesheet" href="{{ $owlCarouselBundle.Permalink }}" integrity="{{ $owlCarouselBundle.Data.Integrity }}" crossorigin="anonymous" media="screen">
diff --git a/layouts/partials/head/css.html b/layouts/partials/head/css.html
index 0b3f461..6671f4c 100644
--- a/layouts/partials/head/css.html
+++ b/layouts/partials/head/css.html
@@ -8,11 +8,11 @@
{{ $cssOpts := (dict "targetPath" "/css/main.css" ) }}
{{ $postCSSOpts := (dict "use" "autoprefixer" ) }}
{{ $bundle := $bundleRaw | toCSS $cssOpts | postCSS $postCSSOpts | minify | fingerprint }}
-<link rel="stylesheet" href="{{ $bundle.Permalink }}" integrity="{{ $bundle.Data.Integrity }}" media="screen">
+<link rel="stylesheet" href="{{ $bundle.Permalink }}" integrity="{{ $bundle.Data.Integrity }}" crossorigin="anonymous" media="screen">
{{ end }}
<!-- Custom css -->
{{ range .Site.Params.customCSS -}}
{{ $style := resources.Get . }}
- <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" media="screen">
+ <link rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" crossorigin="anonymous" media="screen">
{{- end }}