From 631a3b46dc3d8923045b94dc40f98d88a1e4cf42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Feb 2021 07:15:56 +0000 Subject: [PATCH 01/12] Bump peter-evans/create-pull-request from v3.7.0 to v3.8.1 (#228) Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from v3.7.0 to v3.8.1. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.7.0...34371f09e5a05dadd212d0bc451d4c1fa456c646) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autoprefixer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autoprefixer.yml b/.github/workflows/autoprefixer.yml index 8fdff3c..1403659 100644 --- a/.github/workflows/autoprefixer.yml +++ b/.github/workflows/autoprefixer.yml @@ -21,7 +21,7 @@ jobs: npm run autoprefixer - name: Create Pull Request - uses: peter-evans/create-pull-request@v3.7.0 + uses: peter-evans/create-pull-request@v3.8.1 with: branch: autoprefixer branch-suffix: timestamp From f5aebb3cdd0c0f3c566aae5e35b6120179565e4b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Feb 2021 06:17:33 +0000 Subject: [PATCH 02/12] Bump peter-evans/create-pull-request from v3.8.1 to v3.8.2 (#229) Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from v3.8.1 to v3.8.2. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.8.1...052fc72b4198ba9fbc81b818c6e1859f747d49a8) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autoprefixer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autoprefixer.yml b/.github/workflows/autoprefixer.yml index 1403659..65cb048 100644 --- a/.github/workflows/autoprefixer.yml +++ b/.github/workflows/autoprefixer.yml @@ -21,7 +21,7 @@ jobs: npm run autoprefixer - name: Create Pull Request - uses: peter-evans/create-pull-request@v3.8.1 + uses: peter-evans/create-pull-request@v3.8.2 with: branch: autoprefixer branch-suffix: timestamp From b1e1b7c5d621b6045e1c61c6b6ead82fa3520d5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Feb 2021 07:19:13 +0000 Subject: [PATCH 03/12] Bump release-drafter/release-drafter from v5.13.0 to v5.14.0 (#230) Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from v5.13.0 to v5.14.0. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5.13.0...e5ccf147077e46b0225a80bbe314d795d77bb7a2) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 06c4a5d..26b97b3 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: # Create/Update release draft - - uses: release-drafter/release-drafter@v5.13.0 + - uses: release-drafter/release-drafter@v5.14.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From a15f7364f897e1df8021ee3f7ba5ea23059f85a5 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Tue, 16 Feb 2021 05:56:21 +0100 Subject: [PATCH 04/12] Add i18n to experiences section (#232) --- i18n/en.toml | 6 ++++++ layouts/partials/sections/experiences/single-position.html | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/i18n/en.toml b/i18n/en.toml index 3a7aaf2..f880f81 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -73,3 +73,9 @@ other = "Extracurricular Activities" [see_more] other = "See More" + +[responsibilities] +other = "Responsibilities:" + +[present] +other = "Present" \ No newline at end of file diff --git a/layouts/partials/sections/experiences/single-position.html b/layouts/partials/sections/experiences/single-position.html index dda35ef..2300755 100644 --- a/layouts/partials/sections/experiences/single-position.html +++ b/layouts/partials/sections/experiences/single-position.html @@ -5,14 +5,14 @@
{{ $position.designation }}
{{ if .company.url }}{{ .company.name }}{{ else }}{{ .company.name }}{{ end }}
-

{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}Present{{ end }}, +

{{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}{{ i18n "present" }}{{ end }}, {{ .company.location }}

{{ .company.overview | markdownify }}

-
Responsibilities:
+
{{ i18n "responsibilities" }}
    {{ range $position.responsibilities }}
  • {{ . | markdownify }}
  • From 0104c49a4a3d0abbe98ecca3c951b7a260091982 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Tue, 16 Feb 2021 11:39:25 +0100 Subject: [PATCH 05/12] Add optional variable to education for courses where scaling doesn't make sense (#231) * Add optional variable to education Scales for courses doesnt always apply * Rename var *not* !important * Rename var Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- layouts/partials/sections/education-alt.html | 7 ++++--- layouts/partials/sections/education.html | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/layouts/partials/sections/education-alt.html b/layouts/partials/sections/education-alt.html index 7d9597f..5ba1059 100644 --- a/layouts/partials/sections/education-alt.html +++ b/layouts/partials/sections/education-alt.html @@ -51,18 +51,19 @@ {{ if .takenCourses }}
    {{ i18n "taken_courses" }}
    - {{ if .takenCourses.showGrades }} + {{ if .takenCourses.showGrades }} + {{ $hideScale := .takenCourses.hideScale }} - + {{ if not $hideScale }}{{ end }} {{ range $index,$course := .takenCourses.courses }} - + {{ if not $hideScale }}{{ end }} {{ end }} diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html index b6b5aee..21c195c 100644 --- a/layouts/partials/sections/education.html +++ b/layouts/partials/sections/education.html @@ -51,18 +51,19 @@ {{ if .takenCourses }}
    {{ i18n "taken_courses"}}
    - {{ if .takenCourses.showGrades }} + {{ if .takenCourses.showGrades }} + {{ $hideScale := .takenCourses.hideScale }}
    {{ i18n "course_name" }}{{ i18n "total_credit" }}{{ i18n "total_credit" }}{{ i18n "obtained_credit" }}
    {{ $course.name }}{{ $course.outOf }}{{ $course.outOf }}{{ $course.achieved }}
    - + {{ if not $hideScale }}{{ end }} {{ range $index,$course := .takenCourses.courses }} - + {{ if not $hideScale }}{{ end }} {{ end }} From a2307565acd18c8d08e4f100076c9b9ba6503c5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Feb 2021 06:18:57 +0000 Subject: [PATCH 06/12] Bump actions/setup-node from v2.1.4 to v2.1.5 (#237) Bumps [actions/setup-node](https://github.com/actions/setup-node) from v2.1.4 to v2.1.5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2.1.4...46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autoprefixer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autoprefixer.yml b/.github/workflows/autoprefixer.yml index 65cb048..512e346 100644 --- a/.github/workflows/autoprefixer.yml +++ b/.github/workflows/autoprefixer.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2.3.4 - name: Setup Node - uses: actions/setup-node@v2.1.4 + uses: actions/setup-node@v2.1.5 with: node-version: "15.x" From 6f5766aa1a91729b141bd09c14edc3a4e8e6e450 Mon Sep 17 00:00:00 2001 From: "David G. Simmons" Date: Thu, 11 Mar 2021 10:15:32 -0500 Subject: [PATCH 07/12] Add a `tel:` link to the About Page (#246) just like a `mailto:` link triggers an email, a `tel:` link will allow you to call someone directly from the page. I've added this. --- layouts/partials/sections/about.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layouts/partials/sections/about.html b/layouts/partials/sections/about.html index df9702d..30055ea 100644 --- a/layouts/partials/sections/about.html +++ b/layouts/partials/sections/about.html @@ -30,6 +30,8 @@
  • {{ if eq .name "Email" }} + {{ else if eq .name "Phone" }} + {{ else }} {{ end }} From 2978071756b468deddeb244d35d3018c951b0a17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Mar 2021 15:16:57 +0000 Subject: [PATCH 08/12] Update and run autoprefixer (#238) Co-authored-by: kodiakhq[bot] Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- package-lock.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 19385a4..9d2d43e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -247,7 +247,6 @@ "dependencies": { "anymatch": "~3.1.1", "braces": "~3.0.2", - "fsevents": "~2.1.2", "glob-parent": "~5.1.0", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", From 4bea73b88214c85678a5352da1786e4e9123b44d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Mar 2021 15:18:02 +0000 Subject: [PATCH 09/12] Update and run autoprefixer (#247) Co-authored-by: hossainemruz Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> From 88895c50c2b7c390a454ff376f5f9083f163df8a Mon Sep 17 00:00:00 2001 From: "David G. Simmons" Date: Sat, 13 Mar 2021 08:48:52 -0500 Subject: [PATCH 10/12] Fix to the hero so you can have the image named anything you want (#248) * Fix to the hero so you can have the image named anything you want * Keep backward compatibility Signed-off-by: hossainemruz Co-authored-by: hossainemruz --- layouts/partials/helpers/get-hero.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/layouts/partials/helpers/get-hero.html b/layouts/partials/helpers/get-hero.html index 0a10d0a..d253f85 100644 --- a/layouts/partials/helpers/get-hero.html +++ b/layouts/partials/helpers/get-hero.html @@ -1,5 +1,10 @@ {{/* check if there is any hero image in the same folder as the markdown file */}} {{ $heroImage := .Page.Resources.GetMatch "hero.{jpg,png,svg}"}} + +{{/* if hero image is specified in the page front-matter, then use that */}} +{{ if .Params.hero }} + {{ $heroImage = .Page.Resources.GetMatch .Params.hero }} +{{ end }} {{ .Scratch.Set "heroScratch" $heroImage }} {{/* if hero image is not provided, then use the default hero image */}} From 4ef34a8f63d9afa3a4dab180f1b850518ab43ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E7=BA=A2=E8=B1=86?= <55517494+ormissia@users.noreply.github.com> Date: Sat, 13 Mar 2021 23:37:47 +0800 Subject: [PATCH 11/12] Display project card technology tags (#243) * Display project card technology tags * Fix tag CSS Signed-off-by: hossainemruz Co-authored-by: Emruz Hossain --- exampleSite/data/bn/sections/projects.yaml | 2 +- exampleSite/data/cn/sections/projects.yaml | 2 +- exampleSite/data/en/sections/projects.yaml | 2 +- exampleSite/data/id/sections/projects.yaml | 2 +- layouts/partials/cards/project.html | 50 ++++++++++++++-------- static/css/sections/projects.css | 20 +++++++++ 6 files changed, 56 insertions(+), 22 deletions(-) diff --git a/exampleSite/data/bn/sections/projects.yaml b/exampleSite/data/bn/sections/projects.yaml index 7e2b808..bb6d8a4 100644 --- a/exampleSite/data/bn/sections/projects.yaml +++ b/exampleSite/data/bn/sections/projects.yaml @@ -38,7 +38,7 @@ projects: repo: https://github.com/tensorflow/tensorflow #url: "" summary: An Open Source Machine Learning Framework for Everyone. - tags: ["professional", "machine-learning","academic"] + tags: ["professional", "machine-learning"] - name: A sample academic paper role: Team Lead diff --git a/exampleSite/data/cn/sections/projects.yaml b/exampleSite/data/cn/sections/projects.yaml index e72169c..849ffe8 100644 --- a/exampleSite/data/cn/sections/projects.yaml +++ b/exampleSite/data/cn/sections/projects.yaml @@ -37,7 +37,7 @@ projects: repo: https://github.com/tensorflow/tensorflow #url: "" summary: An Open Source Machine Learning Framework for Everyone. - tags: ["professional", "machine-learning","academic"] + tags: ["professional", "machine-learning"] - name: A sample academic paper role: Team Lead diff --git a/exampleSite/data/en/sections/projects.yaml b/exampleSite/data/en/sections/projects.yaml index 544efd8..fc3e4a8 100644 --- a/exampleSite/data/en/sections/projects.yaml +++ b/exampleSite/data/en/sections/projects.yaml @@ -37,7 +37,7 @@ projects: repo: https://github.com/tensorflow/tensorflow #url: "" summary: An Open Source Machine Learning Framework for Everyone. - tags: ["professional", "machine-learning","academic"] + tags: ["professional", "machine-learning"] - name: A sample academic paper role: Team Lead diff --git a/exampleSite/data/id/sections/projects.yaml b/exampleSite/data/id/sections/projects.yaml index 861eced..813f9e4 100644 --- a/exampleSite/data/id/sections/projects.yaml +++ b/exampleSite/data/id/sections/projects.yaml @@ -37,7 +37,7 @@ projects: repo: https://github.com/tensorflow/tensorflow #url: "" summary: An Open Source Machine Learning Framework for Everyone. - tags: ["professional", "machine-learning","academic"] + tags: ["professional", "machine-learning"] - name: A sample academic paper role: Team Lead diff --git a/layouts/partials/cards/project.html b/layouts/partials/cards/project.html index 6b4f959..81d3fcd 100644 --- a/layouts/partials/cards/project.html +++ b/layouts/partials/cards/project.html @@ -26,25 +26,39 @@

    {{ .summary | markdownify }}

    - - {{ if .repo }} - Star - {{ else if .url }} - Details + +
    diff --git a/static/css/sections/projects.css b/static/css/sections/projects.css index 48acc48..1855b27 100644 --- a/static/css/sections/projects.css +++ b/static/css/sections/projects.css @@ -29,6 +29,26 @@ padding: 1rem !important; } +.project-card-footer { + display: flex; +} + +.project-tags-holder { + width: 70%; +} + +.project-btn-holder { + width: 30%; + display: flex; + justify-content: flex-end; + flex-direction: column; +} + +.project-btn-holder span { + justify-content: flex-end; + display: flex; +} + /* ============= Device specific fixes ======= */ /* Large screens such as TV */ From 03ea0fae8cffe511c0d916aacffbbb99d3961ffa Mon Sep 17 00:00:00 2001 From: Roxedus Date: Sat, 13 Mar 2021 17:08:03 +0100 Subject: [PATCH 12/12] Add more i18n strings (#234) * Add more i18n strings * Add the translation strings in other files Signed-off-by: hossainemruz Co-authored-by: hossainemruz --- i18n/bn.toml | 24 +++++++++++++++++++ i18n/cn.toml | 24 +++++++++++++++++++ i18n/de.toml | 24 +++++++++++++++++++ i18n/en.toml | 20 +++++++++++++++- i18n/es.toml | 24 +++++++++++++++++++ i18n/fr.toml | 24 +++++++++++++++++++ i18n/hi.toml | 24 +++++++++++++++++++ i18n/id.toml | 24 +++++++++++++++++++ i18n/it.toml | 24 +++++++++++++++++++ i18n/jp.toml | 24 +++++++++++++++++++ i18n/ko.toml | 24 +++++++++++++++++++ i18n/ru.toml | 24 +++++++++++++++++++ i18n/vn.toml | 24 +++++++++++++++++++ layouts/404.html | 2 +- layouts/partials/cards/post.html | 2 +- layouts/partials/cards/project.html | 4 ++-- layouts/partials/cards/recent-post.html | 2 +- layouts/partials/disqus.html | 6 ++--- .../experiences/multiple-positions.html | 4 ++-- 19 files changed, 317 insertions(+), 11 deletions(-) diff --git a/i18n/bn.toml b/i18n/bn.toml index a39e5f9..15f4daf 100644 --- a/i18n/bn.toml +++ b/i18n/bn.toml @@ -70,3 +70,27 @@ other = "পাঠক্রম বহির্ভূত কার্যক্র [see_more] other = "আরো দেখুন" + +[responsibilities] +other = "দায়িত্বসমুহ:" + +[present] +other = "বর্তমান" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/cn.toml b/i18n/cn.toml index 59f133e..2b8faf1 100644 --- a/i18n/cn.toml +++ b/i18n/cn.toml @@ -73,3 +73,27 @@ other = "课外活动" [see_more] other = "查看更多" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/de.toml b/i18n/de.toml index 85f1a11..90d48b6 100644 --- a/i18n/de.toml +++ b/i18n/de.toml @@ -73,3 +73,27 @@ other = "Buitenschoolse activiteiten" [see_more] other = "Bekijk meer" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/en.toml b/i18n/en.toml index f880f81..4b600ee 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -78,4 +78,22 @@ other = "See More" other = "Responsibilities:" [present] -other = "Present" \ No newline at end of file +other = "Present" + +[comments_javascript] +other = "Please enable JavaScript to view the" + +[comments_by] +other = "comments powered by" + +[read] +other = "Read" + +[project_star] +other = "Star" + +[project_details] +other = "Details" + +[err_404] +other = "The page you are looking for is not there yet." \ No newline at end of file diff --git a/i18n/es.toml b/i18n/es.toml index a660c5d..4648daf 100644 --- a/i18n/es.toml +++ b/i18n/es.toml @@ -73,3 +73,27 @@ other = "Actividades extracurriculares" [see_more] other = "Ver más" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/fr.toml b/i18n/fr.toml index f8e543f..3a9c2e5 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -73,3 +73,27 @@ other = "Activités extra-scolaires" [see_more] other = "En savoir plus" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/hi.toml b/i18n/hi.toml index 6d504bd..ea0cd6c 100644 --- a/i18n/hi.toml +++ b/i18n/hi.toml @@ -73,3 +73,27 @@ other = "अतिरिक्त पाठयक्रम गतिविधि [see_more] other = "और देखें" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/id.toml b/i18n/id.toml index 244803f..f2fa405 100644 --- a/i18n/id.toml +++ b/i18n/id.toml @@ -73,3 +73,27 @@ other = "Kegiatan ekstrakulikuler" [see_more] other = "Lihat Selengkapnya" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/it.toml b/i18n/it.toml index bbfa747..1d8ad81 100644 --- a/i18n/it.toml +++ b/i18n/it.toml @@ -73,3 +73,27 @@ other = "Attività extracurriculari" [see_more] other = "Vedi altro" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/jp.toml b/i18n/jp.toml index 5676860..06f3f4d 100644 --- a/i18n/jp.toml +++ b/i18n/jp.toml @@ -70,3 +70,27 @@ other = "課外活動" [see_more] other = "続きを見る" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/ko.toml b/i18n/ko.toml index 83e7573..d4e3271 100644 --- a/i18n/ko.toml +++ b/i18n/ko.toml @@ -73,3 +73,27 @@ other = "기타 활동" [see_more] other = "더보기" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/ru.toml b/i18n/ru.toml index 2a525c9..6c02809 100644 --- a/i18n/ru.toml +++ b/i18n/ru.toml @@ -73,3 +73,27 @@ other = "Внеклассные занятия" [see_more] other = "Узнать больше" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/i18n/vn.toml b/i18n/vn.toml index 331b699..98b5fec 100644 --- a/i18n/vn.toml +++ b/i18n/vn.toml @@ -73,3 +73,27 @@ other = "Các hoạt động ngoại khóa" [see_more] other = "Xem thêm" + +# [responsibilities] +# other = "Responsibilities:" + +# [present] +# other = "Present" + +# [comments_javascript] +# other = "Please enable JavaScript to view the" + +# [comments_by] +# other = "comments powered by" + +# [read] +# other = "Read" + +# [project_star] +# other = "Star" + +# [project_details] +# other = "Details" + +# [err_404] +# other = "The page you are looking for is not there yet." diff --git a/layouts/404.html b/layouts/404.html index 17944c1..8fd4a16 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -22,7 +22,7 @@

    404

    -

    The page you are looking for is not there yet.

    +

    {{ i18n "err_404" }}

    diff --git a/layouts/partials/cards/post.html b/layouts/partials/cards/post.html index 766f9dc..7bfe722 100644 --- a/layouts/partials/cards/post.html +++ b/layouts/partials/cards/post.html @@ -13,7 +13,7 @@ Read{{ i18n "read" }} diff --git a/layouts/partials/cards/project.html b/layouts/partials/cards/project.html index 81d3fcd..45e63bd 100644 --- a/layouts/partials/cards/project.html +++ b/layouts/partials/cards/project.html @@ -45,7 +45,7 @@ data-icon="octicon-standard" data-show-count="true" aria-label="Star {{ .name }}" - >Star{{ i18n "project_star" }} {{ else if .url }} @@ -53,7 +53,7 @@ class="btn btn-outline-info btn-sm" href="{{ .url }}" target="#" - >Details{{ i18n "project_details" }} {{ end }} diff --git a/layouts/partials/cards/recent-post.html b/layouts/partials/cards/recent-post.html index 5288b9f..c5db57f 100644 --- a/layouts/partials/cards/recent-post.html +++ b/layouts/partials/cards/recent-post.html @@ -12,7 +12,7 @@ diff --git a/layouts/partials/disqus.html b/layouts/partials/disqus.html index 57eb960..71fef21 100644 --- a/layouts/partials/disqus.html +++ b/layouts/partials/disqus.html @@ -17,11 +17,11 @@ })(); comments powered by Disqus{{ i18n "comments_by" }} Disqus diff --git a/layouts/partials/sections/experiences/multiple-positions.html b/layouts/partials/sections/experiences/multiple-positions.html index aae5f3d..1156fe6 100644 --- a/layouts/partials/sections/experiences/multiple-positions.html +++ b/layouts/partials/sections/experiences/multiple-positions.html @@ -7,7 +7,7 @@ {{ $oldestPosition := index (last 1 .positions) 0}} {{ $mostRecentPosition := index (first 1 .positions) 0}}

    - {{ $oldestPosition.start }} - {{ if $mostRecentPosition.end }}{{ $mostRecentPosition.end }}{{ else }}Present{{ end }}, + {{ $oldestPosition.start }} - {{ if $mostRecentPosition.end }}{{ $mostRecentPosition.end }}{{ else }}{{ i18n "present" }}{{ end }}, {{ .company.location }}

    @@ -17,7 +17,7 @@
    {{ range $index,$position:= .positions }}
    {{ $position.designation }}
    -

    {{ $position.start }} - {{if $position.end }} {{ $position.end }} {{else}} Present {{end}}

    +

    {{ $position.start }} - {{if $position.end }} {{ $position.end }} {{else}} {{ i18n "present" }} {{end}}

      {{ range $position.responsibilities }}
  • {{ i18n "course_name"}}{{ i18n "total_credit"}}{{ i18n "total_credit"}}{{ i18n "obtained_credit"}}
    {{ $course.name }}{{ $course.outOf }}{{ $course.outOf }}{{ $course.achieved }}