-
-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into production
- Loading branch information
Showing
40 changed files
with
638 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,72 @@ | ||
name: 'Automatic build' | ||
name: "Build and deploy" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths-ignore: | ||
- .gitignore | ||
- README.md | ||
- LICENSE | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
continuous-delivery: | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # for posts's lastmod | ||
fetch-depth: 0 | ||
# submodules: true | ||
# If using the 'assets' git submodule from Chirpy Starter, uncomment above | ||
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets) | ||
|
||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v1 | ||
|
||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.7 | ||
ruby-version: 3 # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted | ||
bundler-cache: true | ||
|
||
- name: Deploy | ||
run: bash tools/deploy.sh | ||
- name: Build site | ||
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}" | ||
env: | ||
JEKYLL_ENV: "production" | ||
|
||
- name: Test site | ||
run: | | ||
bundle exec htmlproofer _site --disable-external --check-html --allow_hash_href | ||
|
||
- name: Upload site artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: "_site${{ steps.pages.outputs.base_path }}" | ||
|
||
deploy: | ||
name: "Deploy site" | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# The layout text of site | ||
|
||
# ----- Commons label ----- | ||
|
||
layout: | ||
post: Публикация | ||
category: Категория | ||
tag: Тагове | ||
|
||
# The tabs of sidebar | ||
tabs: | ||
# format: <filename_without_extension>: <value> | ||
home: Начало | ||
categories: Категории | ||
tags: Тагове | ||
archives: Архив | ||
about: За мен | ||
|
||
# the text displayed in the search bar & search results | ||
search: | ||
hint: търси | ||
cancel: Отмени | ||
no_results: Упс! Не са намерени резултати. | ||
|
||
panel: | ||
lastmod: Наскоро обновени | ||
trending_tags: Популярни тагове | ||
toc: Съдържание | ||
|
||
copyright: | ||
# Shown at the bottom of the post | ||
license: | ||
template: Тази публикация е лицензирана под :LICENSE_NAME от автора. | ||
name: CC BY 4.0 | ||
link: https://creativecommons.org/licenses/by/4.0/ | ||
|
||
# Displayed in the footer | ||
brief: Някои права запазени. | ||
verbose: >- | ||
Освен ако не е посочено друго, публикациите в блога на този сайт са лицензирани | ||
под лиценза Creative Commons Attribution 4.0 (CC BY 4.0) от автора. | ||
meta: Създадено чрез :PLATFORM и :THEME тема. | ||
|
||
not_found: | ||
statment: Съжалявам, но този на този URL адрес няма налично съдържание. | ||
|
||
notification: | ||
update_found: Налична е нова версия на съдържанието. | ||
update: Обнови | ||
|
||
# ----- Posts related labels ----- | ||
|
||
post: | ||
written_by: Автор | ||
posted: Публикувана | ||
updated: Обновена | ||
words: думи | ||
pageview_measure: преглеждания | ||
read_time: | ||
unit: мин | ||
prompt: четиво | ||
relate_posts: Още за четене | ||
share: Споделете | ||
button: | ||
next: По-нови | ||
previous: По-стари | ||
copy_code: | ||
succeed: Копирано! | ||
share_link: | ||
title: Копирай линк | ||
succeed: Линкът е копиран успешно! | ||
# pinned prompt of posts list on homepage | ||
pin_prompt: Прикрепен | ||
|
||
# categories page | ||
categories: | ||
category_measure: | ||
singular: категория | ||
plural: категории | ||
post_measure: | ||
singular: публикация | ||
plural: публикации |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# The layout text of site | ||
|
||
# ----- Commons label ----- | ||
|
||
layout: | ||
post: Eintrag | ||
category: Kategorie | ||
tag: Tag | ||
|
||
# The tabs of sidebar | ||
tabs: | ||
# format: <filename_without_extension>: <value> | ||
home: Startseite | ||
categories: Kategorien | ||
tags: Tags | ||
archives: Archiv | ||
about: Über | ||
|
||
# the text displayed in the search bar & search results | ||
search: | ||
hint: Suche | ||
cancel: Abbrechen | ||
no_results: Ups! Keine Einträge gefunden. | ||
|
||
panel: | ||
lastmod: Kürzlich aktualisiert | ||
trending_tags: Beliebte Tags | ||
toc: Inhalt | ||
|
||
copyright: | ||
# Shown at the bottom of the post | ||
license: | ||
template: Dieser Eintrag ist vom Autor unter :LICENSE_NAME lizensiert. | ||
name: CC BY 4.0 | ||
link: https://creativecommons.org/licenses/by/4.0/ | ||
|
||
# Displayed in the footer | ||
brief: Einige Rechte vorbehalten. | ||
verbose: >- | ||
Alle Einträge auf dieser Seite stehen, soweit nicht anders angegeben, unter der Lizenz Creative Commons Attribution 4.0 (CC BY 4.0). | ||
meta: Powered by :PLATFORM with :THEME theme. | ||
|
||
not_found: | ||
statment: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource. | ||
|
||
notification: | ||
update_found: Eine neue Version ist verfügbar. | ||
update: Neue Version | ||
|
||
# ----- Posts related labels ----- | ||
|
||
post: | ||
written_by: Von | ||
posted: Veröffentlicht | ||
updated: Aktualisiert | ||
words: Wörter | ||
pageview_measure: Aufrufe | ||
read_time: | ||
unit: Minuten | ||
prompt: lesen | ||
relate_posts: Weiterlesen | ||
share: Teilen | ||
button: | ||
next: Nächster Eintrag | ||
previous: Eintrag vorher | ||
copy_code: | ||
succeed: Kopiert! | ||
share_link: | ||
title: Link kopieren | ||
succeed: Link erfolgreich kopiert! | ||
# pinned prompt of posts list on homepage | ||
pin_prompt: Angepinnt | ||
|
||
# categories page | ||
categories: | ||
category_measure: | ||
singular: Kategorie | ||
plural: Kategorien | ||
post_measure: | ||
singular: Eintrag | ||
plural: Einträge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# The layout text of site | ||
|
||
# ----- Commons label ----- | ||
|
||
layout: | ||
post: Bejegyzés | ||
category: Kategória | ||
tag: Címke | ||
|
||
# The tabs of sidebar | ||
tabs: | ||
# format: <filename_without_extension>: <value> | ||
home: Kezdőlap | ||
categories: Kategóriák | ||
tags: Címkék | ||
archives: Archívum | ||
about: Rólam | ||
|
||
# the text displayed in the search bar & search results | ||
search: | ||
hint: keresés | ||
cancel: Mégse | ||
no_results: Oops! Nincs találat a keresésre. | ||
|
||
panel: | ||
lastmod: Legutóbb frissítve | ||
trending_tags: Népszerű Címkék | ||
toc: Tartalom | ||
links: Blog linkek | ||
|
||
copyright: | ||
# Shown at the bottom of the post | ||
license: | ||
template: A bejegyzés :LICENSE_NAME licenccel rendelkezik. | ||
name: CC BY 4.0 | ||
link: https://creativecommons.org/licenses/by/4.0/ | ||
|
||
# Displayed in the footer | ||
brief: Néhány jog fenntartva. | ||
verbose: >- | ||
Az oldalon található tartalmak | ||
Creative Commons Attribution 4.0 International (CC BY 4.0) licenccel rendelkeznek, | ||
hacsak másképp nincs jelezve. | ||
meta: Készítve :PLATFORM motorral :THEME témával. | ||
|
||
not_found: | ||
statment: Sajnáljuk, az URL-t rosszul helyeztük el, vagy valami nem létezőre mutat. | ||
|
||
notification: | ||
update_found: Elérhető a tartalom új verziója. | ||
update: Frissítés | ||
|
||
# ----- Posts related labels ----- | ||
|
||
post: | ||
written_by: Szerző | ||
posted: Létrehozva | ||
updated: Frissítve | ||
words: szó | ||
pageview_measure: látogató | ||
read_time: | ||
unit: perc | ||
prompt: elolvasni | ||
relate_posts: További olvasnivaló | ||
share: Megosztás | ||
button: | ||
next: Újabb | ||
previous: Régebbi | ||
copy_code: | ||
succeed: Másolva! | ||
share_link: | ||
title: Link másolása | ||
succeed: Link sikeresen másolva! | ||
# pinned prompt of posts list on homepage | ||
pin_prompt: Kitűzve | ||
|
||
# categories page | ||
categories: | ||
category_measure: kategória | ||
post_measure: bejegyzés |
Oops, something went wrong.